mirror of
https://github.com/rwinkhart/cmutton.git
synced 2026-08-28 12:56:33 -04:00
15 lines
179 B
C
15 lines
179 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
typedef struct {
|
|
char* data;
|
|
int len;
|
|
} PascalString;
|
|
|
|
typedef struct {
|
|
PascalString* data;
|
|
int len;
|
|
} PascalStringArray;
|
|
|
|
#endif
|