forked from github/server
atoi36 tool in build aufgenommen
This commit is contained in:
parent
2182055c24
commit
429b7c95c5
|
@ -2,3 +2,4 @@ SubDir TOP ;
|
|||
SubInclude TOP common ;
|
||||
SubInclude TOP eressea ;
|
||||
SubInclude TOP mapper ;
|
||||
SubInclude TOP tools ;
|
||||
|
|
|
@ -11,11 +11,13 @@
|
|||
*/
|
||||
|
||||
#include <base36.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char**argv)
|
||||
{
|
||||
int i;
|
||||
for (i=1;i!=argc;++i) {
|
||||
printf("%s -> %d\n", argv[i], atoi36(argv[i]));
|
||||
}
|
||||
int i;
|
||||
for (i=1;i!=argc;++i) {
|
||||
printf("%s -> %d\n", argv[i], atoi36(argv[i]));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue