apfl/src/internal.h

22 lines
311 B
C
Raw Normal View History

2021-12-10 20:22:16 +00:00
#ifndef APFL_INTERNAL_H
#define APFL_INTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
2021-12-10 20:22:16 +00:00
#include <stdlib.h>
#include "gc.h"
// Internal use only functions
struct apfl_string *apfl_string_move_into_new_gc_string(struct gc *gc, struct apfl_string *in);
2021-12-10 20:22:16 +00:00
#ifdef __cplusplus
}
#endif
#endif