summaryrefslogtreecommitdiff
path: root/src/audio/audio.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-01-28 09:31:13 +0100
committerskal <pascal.massimino@gmail.com>2026-01-28 09:31:13 +0100
commit302d883f34864bc66a5e04532ae27d7e89fd94e8 (patch)
tree8f813865d5dc5b70ee8bf9ee4866546116859825 /src/audio/audio.h
parentf804dcb9740540b3735628ebf8c006235cc56fca (diff)
style: Add 3-line descriptive headers to all source files
This commit applies a new project-wide rule that every source file must begin with a concise 3-line comment header describing its purpose. - Updated CONTRIBUTING.md with the new rule. - Applied headers to all .cc and .h files in src/ and tools/. - Fixed various minor compilation errors and missing includes discovered during the header update process.
Diffstat (limited to 'src/audio/audio.h')
-rw-r--r--src/audio/audio.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/audio/audio.h b/src/audio/audio.h
index b3dde7f..d34ff5e 100644
--- a/src/audio/audio.h
+++ b/src/audio/audio.h
@@ -1,4 +1,9 @@
+// This file is part of the 64k demo project.
+// It defines the public interface for the audio system.
+// Includes initialization, shutdown, and frame updates.
+
#pragma once
+
void audio_init();
void audio_update();
-void audio_shutdown();
+void audio_shutdown(); \ No newline at end of file