You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

create.pl 335 B

12345678910111213141516171819202122
  1. #!/usr/bin/env perl
  2. $count = 0;
  3. foreach (@ARGV) {
  4. print "#define\tinterface_", $_, "\t\t", $count, "\n";
  5. $count ++;
  6. }
  7. print "#ifdef USE_FUNCTABLE\n";
  8. print "#define MAX_PROF_TABLE ", $count, "\n";
  9. print "static char *func_table[] = {\n";
  10. foreach (@ARGV) {
  11. print "\"", $_, "\",\n";
  12. }
  13. print "};\n";
  14. print "#endif\n";