forked from KolibriOS/kolibrios
6496d04506
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
275 B
C
18 lines
275 B
C
#include<stdio.h>
|
|
#include<string.h>
|
|
|
|
static char tmp_buf[1024];
|
|
|
|
int main(int argc,char * argv[])
|
|
{
|
|
printf("CREATE %s\n",argv[1]);
|
|
while(!feof(stdin))
|
|
{
|
|
fscanf(stdin,"%s ",&tmp_buf);
|
|
printf("ADDMOD %s\n",tmp_buf);
|
|
}
|
|
printf("SAVE\n");
|
|
printf("END\n");
|
|
return 0;
|
|
}
|