diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2013-09-05 10:01:47 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2013-09-05 10:01:47 +0000 |
| commit | 504341dfbafdcd858704350162bb7e233cf6daf2 (patch) | |
| tree | a942e09222dd5640cbd8a0e529dc9ee347bed7f6 /src/runtime/c/gu/dump.h | |
| parent | 8f975239c62e10db7544a9303d2dcb333c38baf6 (diff) | |
remove dump and yaml from libgu
Diffstat (limited to 'src/runtime/c/gu/dump.h')
| -rw-r--r-- | src/runtime/c/gu/dump.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/runtime/c/gu/dump.h b/src/runtime/c/gu/dump.h deleted file mode 100644 index 7d6f10a77..000000000 --- a/src/runtime/c/gu/dump.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef GU_DUMP_H_ -#define GU_DUMP_H_ - -#include <gu/defs.h> -#include <gu/yaml.h> -#include <gu/type.h> -#include <gu/map.h> - -typedef struct GuDump GuDump; - -struct GuDump { - GuPool* pool; - GuYaml* yaml; - GuMap* data; - GuTypeMap* dumpers; - bool print_address; -}; - -typedef void (*GuDumpFn)(GuFn* self, GuType* type, const void* value, GuDump* ctx); - -GuDump* -gu_new_dump(GuWriter* wtr, GuTypeTable* dumpers, GuExn* err, GuPool* pool); - -void -gu_dump(GuType* type, const void* value, GuDump* ctx); - -void -gu_dump_stderr(GuType* type, const void* value, GuExn* err); - -extern GuTypeTable -gu_dump_table; - - -#endif // GU_DUMP_H_ |
