mirror of
https://github.com/pikami/cosmium.git
synced 2025-02-03 06:27:59 +00:00
16 lines
245 B
C
16 lines
245 B
C
#ifndef SHARED_H
|
|
#define SHARED_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <dlfcn.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
extern void *handle;
|
|
|
|
void *load_function(const char *func_name);
|
|
char *compact_json(const char *json);
|
|
|
|
#endif
|