apfl/src/strings.h

19 lines
353 B
C
Raw Normal View History

2022-04-22 21:17:28 +00:00
#ifndef APFL_STRINGS_H
#define APFL_STRINGS_H
2021-12-10 20:22:16 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2022-04-22 21:17:28 +00:00
#include "apfl.h"
#include "gc.h"
struct apfl_string *apfl_string_move_into_new_gc_string(struct gc *gc, struct apfl_string *in);
struct apfl_string *apfl_string_copy_to_new_gc_string(struct gc *gc, struct apfl_string_view sv);
2021-12-10 20:22:16 +00:00
#ifdef __cplusplus
}
#endif
#endif