mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-14 16:27:15 +03:00
10 lines
146 B
C
10 lines
146 B
C
#include <stdlib.h>
|
|
|
|
struct RocStr {
|
|
char* bytes;
|
|
size_t len;
|
|
size_t capacity;
|
|
};
|
|
|
|
extern struct RocStr roc__mainForHost_1_exposed();
|