14 lines
425 B
C
14 lines
425 B
C
|
/* This software is licensed by the MIT License, see LICENSE file */
|
||
|
/* Copyright © 2022 Gregory Lirent */
|
||
|
|
||
|
#include <string.h>
|
||
|
#include "../../modules/libcdsb/include/vtype.h"
|
||
|
|
||
|
#ifndef LIBCJSONP_BITS_STRING_H
|
||
|
#define LIBCJSONP_BITS_STRING_H
|
||
|
|
||
|
extern void libcjsonp_string_unescape(vtype_string* x);
|
||
|
extern void libcjsonp_string_escape (vtype_string* s);
|
||
|
|
||
|
#endif /* LIBCJSONP_BITS_STRING_H */
|