kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_7_6_14_func_param_adjust.c (128B)


      1 int inc(int x) { return x + 1; }
      2 
      3 int apply(int f(int), int x) { return f(x); }
      4 
      5 int test_main(void) { return apply(inc, 41); }