mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-23 22:45:14 +00:00
9 lines
170 B
C
9 lines
170 B
C
#include <stdlib.h>
|
|
|
|
struct RocStr {
|
|
char* bytes;
|
|
size_t len;
|
|
size_t capacity;
|
|
};
|
|
|
|
extern void roc__mainForHost_1_exposed_generic(const struct RocStr *data);
|