summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/otibet/oct2otp.c
blob: 54e1a88c86205a4f65b0d3ebad6c48283fd1a013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * File:		oct2otp.c
 * Date:		Thu Dec 18 14:39:34 1997
 * Author:		 (norbert)
 * 
 */

#include <stdio.h>

int main() 
{
  int c;
  while ((c=getchar())!=EOF) {
    if (c>127)
      printf("@'%o",c);
    else
      printf("%c",c);
  }
}