#ifndef APFL_STRINGS_H #define APFL_STRINGS_H #ifdef __cplusplus extern "C" { #endif #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); #ifdef __cplusplus } #endif #endif