13 lines
188 B
C
13 lines
188 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
const char *get_str(void);
|
|
|
|
char *get_str_mut(void);
|
|
|
|
void println(const char *str);
|