waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

funi.c.stpl (130B)


      1 #include "funi.h"
      2 
      3 %for i in range(maxfuni):
      4 int func{{i}}(int a)
      5 {
      6     if (a < {{i}})
      7         return a;
      8     return {{i}};
      9 }
     10 %end