Include guards on our headers

This commit is contained in:
Jasmine Iwanek
2022-02-18 19:42:21 -05:00
parent 7d3cfc0fe5
commit 7fc893bdb0
127 changed files with 472 additions and 277 deletions

View File

@@ -1,3 +1,6 @@
#ifndef SOUND_YM7128_H
# define SOUND_YM7128_H
typedef struct ym7128_t
{
int a0, sci;
@@ -23,3 +26,5 @@ typedef struct ym7128_t
void ym7128_init(ym7128_t *ym7128);
void ym7128_write(ym7128_t *ym7128, uint8_t val);
void ym7128_apply(ym7128_t *ym7128, int16_t *buffer, int len);
#endif /*SOUND_YM7128_H*/