]> git.saurik.com Git - cycript.git/blob - sig/parse.hpp
Further normalization and fixed some output cases.
[cycript.git] / sig / parse.hpp
1 #ifndef SIG_PARSE_H
2 #define SIG_PARSE_H
3
4 #include "sig/types.hpp"
5
6 #include <apr-1/apr_pools.h>
7
8 namespace sig {
9
10 extern void (*sig_aggregate)(apr_pool_t *pool, enum Primitive primitive, const char *name, struct Signature *signature, const char *types);
11
12 void Parse(apr_pool_t *pool, struct Signature *signature, const char *name);
13
14 const char *Unparse(apr_pool_t *pool, struct Signature *signature);
15 const char *Unparse(apr_pool_t *pool, struct Type *type);
16
17 }
18
19 #endif/*SIG_PARSE_H*/