diff options
Diffstat (limited to 'parser.sig')
-rw-r--r-- | parser.sig | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,7 @@ signature PARSER = sig ulonglong_t | pointer_t of int * ctype | - function_t of ctype * ctype list | + function_t of ctype * ctype list * bool | array_t of Word64.word * ctype | struct_t of { name: nid, size: word, alignment: word, @@ -155,6 +155,7 @@ signature PARSER = sig val isSigned: ctype -> bool val isPointer: ctype -> bool val pointsTo: ctype -> ctype + val isArray: ctype -> bool val typeRank: ctype -> int val resolveType: ctype -> ctype |