From d94bb5b66774b54f215231eaaf5411a00aed69ee Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Wed, 11 Jan 2006 23:55:48 +0000 Subject: trunk/Master/texmf-dist/source/latex/otibet git-svn-id: svn://tug.org/texlive/trunk@427 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/source/latex/otibet/oct2otp.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Master/texmf-dist/source/latex/otibet/oct2otp.c (limited to 'Master/texmf-dist/source/latex/otibet/oct2otp.c') diff --git a/Master/texmf-dist/source/latex/otibet/oct2otp.c b/Master/texmf-dist/source/latex/otibet/oct2otp.c new file mode 100644 index 00000000000..54e1a88c862 --- /dev/null +++ b/Master/texmf-dist/source/latex/otibet/oct2otp.c @@ -0,0 +1,20 @@ +/* + * File: oct2otp.c + * Date: Thu Dec 18 14:39:34 1997 + * Author: (norbert) + * + */ + +#include + +int main() +{ + int c; + while ((c=getchar())!=EOF) { + if (c>127) + printf("@'%o",c); + else + printf("%c",c); + } +} + -- cgit v1.2.3