Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
345 B

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
main(argc, argv)
char **argv;
{
int nl = 1;
int i;
if ( (argc > 1) && (strcmp(argv[1], "-n") == 0) ) {
++argv;
--argc;
nl = 0;
}
for ( i=1; i < argc; i++ ) {
if ( i > 1 ) putchar(' ');
fputs(argv[i], stdout);
}
if (nl) putchar('\n');
exit(0);
}