19 lines
370 B
C
19 lines
370 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, ...);
|
|
|
|
struct string* new_string_from_ascii_format_vargs(
|
|
const char* fmt, va_list arg);
|
|
|