/* WARNING: This file was generated by dkct. Changes you make here will be lost if dkct is run again! You should modify the original source and run dkct on it. Original source: test-fne.ctr */ /** @file test-fne.c The test-fne module. */ #line 1 "test-fne.ctr" #include "dk4conf.h" #include #include "dk4fput.h" /** Main function. @param argc Number of command line arguments. @param argv Command line arguments array. @return 0 on success, all other values indicate errors. */ #if DK4_CHAR_SIZE > 1 int wmain(int argc, wchar_t *argv[]) #else int main(int argc, char *argv[]) #endif { int i; dk4fput_initialize_stdout(); for (i = 0; i < argc; i++) { dk4fputs(argv[i], stdout, NULL); dk4fputc(dkT('\n'), stdout, NULL); } return 0; }