Написано на чистом C ..
Но я включил string.h как:
#include <string.h> // for strnlen
#include <stdlib.h> // for _countof, _itoa fns, _MAX_COUNT macros
#include <conio.h> // for _getch
#include <process.h> // for system
#include <io.h> // for findfirst
#include <locale.h>
называется здесь:
if( argc != 2 ) {
printf("Usage: extension .001 or .alm only\n");
return(0);
}
else printf("Read %d %s\n",argc, argv[1]);
if( !_getcwd((char *)cdir, sizeof(cdir))) {
printf("\n ! ERROR ! obtaining current disc directory!");
printf("\n .. any key ..");
_getch();
exit(-1);
}
printf("\n Directory: %s\n", cdir);
if(!_stricmp(argv[1],"alm"))
sprintf(csrch,"*.alm");
else
sprintf(csrch,"*.001");
Так почему ошибка / предупреждение?