exip
Alpha 0.5.4
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
tests
test-set
xsitype
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
}
Generated on Thu Nov 27 2014 10:56:09 for exip by
1.8.4