Initial revision

This commit is contained in:
sater
1984-06-29 14:46:39 +00:00
parent fb9cd1ed17
commit 2a026953ff
21 changed files with 7189 additions and 0 deletions

9
doc/em/even.c Normal file
View File

@@ -0,0 +1,9 @@
main() {
register int l,j ;
for ( j=0 ; (l=getchar()) != -1 ; j++ ) {
if ( j%16 == 15 ) printf("%3d\n",l&0377 ) ;
else printf("%3d ",l&0377 ) ;
}
printf("\n") ;
}