Commit code, circa 2010

This commit is contained in:
2026-05-18 12:31:43 -04:00
commit e58e308366
5 changed files with 1163 additions and 0 deletions

13
tocaps.c Executable file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
int main(void)
{
char c = 0x00;
c = fgetc(stdin);
while (!feof(stdin)) {
c = toupper(c);
printf("%c", c);
c = fgetc(stdin);
}
return 0;
}