mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
13 lines
266 B
C
13 lines
266 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
/* This program writes its arguments (separated by '\0') to stdout. */
|
|
int
|
|
main(int argc, char const *argv[])
|
|
{
|
|
int i;
|
|
for (i = 1; i < argc; ++i)
|
|
fwrite(argv[i], strlen(argv[i])+1, 1, stdout);
|
|
|
|
return 0;
|
|
}
|