diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/docbytex/main.c')
-rw-r--r-- | Master/texmf-dist/doc/generic/docbytex/main.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/generic/docbytex/main.c b/Master/texmf-dist/doc/generic/docbytex/main.c new file mode 100644 index 00000000000..8388ceeb619 --- /dev/null +++ b/Master/texmf-dist/doc/generic/docbytex/main.c @@ -0,0 +1,14 @@ +#include <stdio.h> + +//: main + +int main (int argc, char** argv) +{ + int i; + inicializuj(); + pocitej(); + for (i=0; i<argc; i++) uzasna_funkce(i); + uzasne_wokno(); + return 0; +} + |