mirror of
https://github.com/fluffos/fluffos
synced 2026-08-12 18:26:06 -04:00
fix #361 * basic functional cmake rules * Adding missing libraies * Successfully compiled under cmake * Make sure .sh always has eol=lf * final cmake related changes * Getting rid of autoconf automake and jemalloc * Move testsuite to top directory * auto config packages using cmake * Fix file modes * basic preprocessor * Adding portbind back * Fix travis * Lower libevent requirement to 2.0 * Restore testsuite/log dir
16 lines
337 B
C
16 lines
337 B
C
/* /include/type.h */
|
|
|
|
#ifndef _TYPE_H
|
|
#define _TYPE_H
|
|
|
|
#define INT "int"
|
|
#define STRING "string"
|
|
#define ARRAY "array"
|
|
#define OBJECT "object"
|
|
#define MAPPING "mapping"
|
|
#define FUNCTION "function"
|
|
#define FLOAT "float"
|
|
#define BUFFER "buffer"
|
|
#define CLASS "class"
|
|
|
|
#endif
|