mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
13 lines
171 B
C
13 lines
171 B
C
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint32_t length; // TODO: size_t
|
|
uint8_t *data;
|
|
} string_t;
|
|
|
|
void __go_printstring(char *str);
|
|
void __go_printnl();
|