apfl/src/strings.h

17 lines
255 B
C

#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);
#ifdef __cplusplus
}
#endif
#endif