modernc.org/99c@v1.0.1-0.20181109153923-a9e8197063d9/examples/embedding/main.c (about) 1 // +build ignore 2 3 #include <stdio.h> 4 5 int main() 6 { 7 int c; 8 while ((c = getc(stdin)) != EOF) { 9 printf("%c", c >= 'a' && c <= 'z' ? c ^ ' ' : c); 10 } 11 }