14 lines
271 B
C
14 lines
271 B
C
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
struct string* new_string(
|
|
const uint8_t* str,
|
|
size_t olen);
|
|
|
|
struct string* new_string_from_format(
|
|
const char* fmt, ...);
|
|
|
|
struct string* new_string_from_vargs(
|
|
const char* fmt, va_list va);
|