kit

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

6_9_16_block_scope_func_decl.c (96B)


      1 int test_main(void) {
      2   int helper(void);
      3   return helper();
      4 }
      5 
      6 int helper(void) { return 42; }