Files
cmutton/types.h
T
2026-01-21 19:05:46 -05:00

10 lines
103 B
C

#ifndef TYPES_H
#define TYPES_H
typedef struct {
char* data;
int len;
} PascalString;
#endif