more work on parser, stdio.h is fully parsed now
[cparser] / type.h
1 #ifndef TYPE_H
2 #define TYPE_H
3
4 #include <stdio.h>
5
6 typedef struct type_t                   type_t;
7 typedef struct atomic_type_t            atomic_type_t;
8 typedef struct pointer_type_t           pointer_type_t;
9 typedef struct method_parameter_type_t  method_parameter_type_t;
10 typedef struct method_type_t            method_type_t;
11 typedef struct compound_entry_t         compound_entry_t;
12 typedef struct compound_type_t          compound_type_t;
13 typedef struct enum_type_t              enum_type_t;
14 typedef struct builtin_type_t           builtin_type_t;
15
16 void init_types(void);
17 void exit_types(void);
18
19 /**
20  * prints a human readable form of @p type to a stream
21  */
22 void print_type(FILE* out, const type_t *type);
23
24 /**
25  * returns 1 if type contains integer numbers
26  */
27 int is_type_int(const type_t *type);
28
29 /**
30  * returns 1 if the type is valid. A type is valid if it contains no unresolved
31  * references anymore and is not of TYPE_INVALID.
32  */
33 int type_valid(const type_t *type);
34
35 #endif