/*
 * Soubor:  20111013-Thu-soubory.c
 * Datum:   13.10.2011 09:09
 * Autor:   Marek Nožka, nozka <@t> spseol <d.t> cz
 * Licence: GNU/GPL 
 * Úloha: 
 * Popis:   
 ****************************************************/
#define _ISOC99_SOURCE
#define _GNU_SOURCE
#include <stdio.h>

/****************************************************
 *               Hlavní program.
 ****************************************************/
int main(void) {
    FILE *soubor;

    soubor = fopen("muj.txt","wb");
    fprintf(soubor, "toto je můj textový soubor\ndalsi\n");

    fclose(soubor);


    return 0;
}

