Add header guards

This commit is contained in:
twinaphex
2014-03-30 22:50:28 +02:00
parent 73bf72aa6c
commit d4a3125c44
36 changed files with 152 additions and 8 deletions

View File

@@ -1,4 +1,9 @@
#ifndef _FCEU_STR_H
#define _FCEU_STR_H
typedef struct {
uint8 *data;
uint32 len; /* Not including extra NULL character. */
} fceustr;
#endif