mirror of
https://github.com/zigzap/zap.git
synced 2025-10-21 07:34:08 +00:00
44 lines
865 B
C
44 lines
865 B
C
/*
|
|
Copyright: Boaz Segev, 2017-2019
|
|
License: MIT
|
|
*/
|
|
#ifndef H_FIOBJ_H
|
|
#define H_FIOBJ_H
|
|
|
|
#include <fiobj_ary.h>
|
|
#include <fiobj_data.h>
|
|
#include <fiobj_hash.h>
|
|
#include <fiobj_json.h>
|
|
#include <fiobj_mustache.h>
|
|
#include <fiobj_numbers.h>
|
|
#include <fiobj_str.h>
|
|
#include <fiobject.h>
|
|
|
|
#include <fio_siphash.h>
|
|
|
|
#ifdef H_FACIL_IO_H
|
|
#include <fiobj4fio.h>
|
|
#endif
|
|
|
|
#if DEBUG
|
|
FIO_INLINE void fiobj_test(void) {
|
|
fprintf(stderr, "\n=== FIOBJ Tests ===\n\n");
|
|
fiobj_test_string();
|
|
fiobj_test_numbers();
|
|
fiobj_test_array();
|
|
fiobj_test_hash();
|
|
fiobj_test_core();
|
|
fiobj_data_test();
|
|
fiobj_test_json();
|
|
fiobj_mustache_test();
|
|
fiobj_siphash_test();
|
|
fprintf(stderr, "=== FIOBJ Done ===\n\n");
|
|
}
|
|
#else
|
|
FIO_INLINE void fiobj_test(void) {
|
|
fprintf(stderr, "ERROR: tesing functions only defined with DEBUG=1\n");
|
|
exit(-1);
|
|
}
|
|
#endif
|
|
#undef FIO_INLINE
|
|
#endif
|