lambda-calc-1/string/new.h
2025-01-13 20:36:07 -06:00

16 lines
283 B
C

#include <stdint.h>
#include <stdarg.h>
#include <stddef.h>
struct string* new_string(
const wchar_t* str,
size_t olen);
struct string* new_string_from_ascii(
const char* str,
size_t olen);
struct string* new_string_from_ascii_format(
const char* fmt, ...);