Initial commit at Mon May 18 09:27:46 EDT 2015 by tim on stravinsky

This commit is contained in:
Tim Edwards
2015-05-18 09:27:46 -04:00
commit d5e9f81cb0
129 changed files with 65358 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdio.h>
char buffer[100];
int i;
main()
{
while (fgets(buffer,100,stdin) != NULL) {
for (i=0; i < strlen(buffer); i++) {
if (buffer[i] == ' ') {
putchar('\t');
while (buffer[i] == ' ') i++;
}
putchar(buffer[i]);
}
}
}