Files
ci-libretro-fceumm/src/fceustr.h
2014-03-30 22:50:28 +02:00

10 lines
146 B
C

#ifndef _FCEU_STR_H
#define _FCEU_STR_H
typedef struct {
uint8 *data;
uint32 len; /* Not including extra NULL character. */
} fceustr;
#endif