diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-05 19:26:38 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-05 19:26:38 -0500 |
| commit | 534acf9259a233eb5cf0e59ae754b4c036893f81 (patch) | |
| tree | 525d5a6ea9a88cbf1091684f2810a925b6cd5ea9 /tests/include | |
| parent | bd1c283eb95178339e0078103256836439953626 (diff) | |
| download | nimterop-534acf9259a233eb5cf0e59ae754b4c036893f81.tar.gz nimterop-534acf9259a233eb5cf0e59ae754b4c036893f81.zip | |
ast2 var of proc type, multiple proc type block
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/tast2.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 84a4604..3f46849 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -32,7 +32,10 @@ typedef char *A10[3][6]; typedef char *(*A11)[3]; typedef struct A0 *A111[12]; -typedef int **(*A12)(int, int b, int *c, int *, int *count[4], int (*func)(int, int)); +typedef int + **(*A12)(int, int b, int *c, int *, int *count[4], int (*func)(int, int)), + **(*A121)(float, float b, float *c, float *, float *count[4], float (*func)(float, float)), + **(*A122)(char, char b, char *c, char *, char *count[4], char (*func)(char, char)); typedef int A13(int, int, void (*func)(void)); struct A14 { volatile char a1; }; @@ -104,8 +107,11 @@ typedef enum VSPresetFormat { //struct A2 test_proc1(struct A0 a); - - +// Proc vars +void + *(*pcre_malloc)(size_t), + (*pcre_free)(void *), + *(*pcre_stack_malloc)(size_t); |
