exip  Alpha 0.5.4
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
schemaConvert.c
Go to the documentation of this file.
1 
2 /*
3  Converts EXIProcessor generated schemas into EXIP supported shemas
4 */
5 
6 #include <stdio.h>
7 
8 int main() {
9  int c;
10 
11  c = fgetc(stdin);
12  //fputc (c, stdout);
13  fputc (0xa0, stdout);
14 
15  c = fgetc(stdin);
16  fputc (0x09, stdout);
17 
18  while ((c=fgetc(stdin)) != EOF)
19  fputc (c, stdout);
20  return 0;
21 }