toaruos/userspace/yes.c
Kevin Lange c88d6dcb4f Add or update the heading comments for user apps.
Adds useful descriptions to ones that were lacking them, updates ones
that were innacurate, etc.
2012-07-06 21:08:28 -07:00

19 lines
310 B
C

/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* yes
*
* Continually prints its first argument, followed by a newline.
*/
#include <stdio.h>
int main(int argc, char * argv[]) {
char * yes_string = "y";
if (argc > 1) {
yes_string = argv[1];
}
while (1) {
printf("%s\n", yes_string);
}
return 0;
}