summaryrefslogtreecommitdiff
path: root/support/dktools/test-fne.c
blob: fd25a12273a5018979d7f00a65ee968f807c13aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
	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 <stdio.h>

#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;
}