diff options
| author | Teddy <ted.sybil@gmail.com> | 2014-05-07 11:55:51 +0800 |
|---|---|---|
| committer | Teddy <ted.sybil@gmail.com> | 2014-05-07 11:55:51 +0800 |
| commit | 30ecc9941b8da7a3c0108bc6117a1434e9caab94 (patch) | |
| tree | 6a24b25086c63a4aa112fc6173b29c31793099d8 /testbed/func_pointer.c | |
| parent | bbb4de0693ba2b010cd2c44805d9a4ee4a2a8904 (diff) | |
| parent | 52b29440f8f1310e0c074c8eb409e433c56bdd62 (diff) | |
Merge /home/ymf/work/cibic into optimization
Diffstat (limited to 'testbed/func_pointer.c')
| -rw-r--r-- | testbed/func_pointer.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/testbed/func_pointer.c b/testbed/func_pointer.c deleted file mode 100644 index e7b6484..0000000 --- a/testbed/func_pointer.c +++ /dev/null @@ -1,19 +0,0 @@ -typedef void (*Func_t)(); -void f(Func_t func, int step) { - if (!step) return; - printf("i'm f\n"); - func(func, step - 1); -} -void g(void (*func)(), int step) { - if (!step) return; - printf("i'm g\n"); - func(func, step - 1); -} -int main() { - void (*func)(void (*ifunc)(), int step); - int x = 1; - if (x) func = f; - else func = g; - func(func, 5); - return 0; -} |