mirror of
https://github.com/rwinkhart/cmutton.git
synced 2026-08-27 20:36:31 -04:00
10 lines
103 B
C
10 lines
103 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
typedef struct {
|
|
char* data;
|
|
int len;
|
|
} PascalString;
|
|
|
|
#endif
|