mirror of
https://github.com/rwinkhart/cmutton.git
synced 2026-08-28 04:46:46 -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
|