[api] Simple JSON encoding for strings, UTF-8 rather than Unicode

This commit is contained in:
Al
2015-12-17 12:24:40 -05:00
parent af78614f62
commit 41ea105bb4
2 changed files with 55 additions and 0 deletions

14
src/json_encode.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef JSON_ENCODE_H
#define JSON_ENCODE_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "collections.h"
#include "string_utils.h"
#include "utf8proc/utf8proc.h"
char *json_encode_string(char *str);
#endif