c++/ukazatele/barvicky.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 21 Nov 2016 22:48:29 +0100
changeset 43 b54d76467040
parent 12 7b718fcf981c
permissions -rw-r--r--
libevent: řetězec/buffer musí být pro použití jako string ukončen \0
franta-hg@12
     1
#include <string>
franta-hg@12
     2
franta-hg@12
     3
using namespace std;
franta-hg@12
     4
franta-hg@12
     5
const int BARVA_CERVENA = 1;
franta-hg@12
     6
const int BARVA_ZELENA  = 2;
franta-hg@12
     7
franta-hg@12
     8
string obarvi (string text, int barva);
franta-hg@12
     9
string obarvi (const char * text, int barva);
franta-hg@12
    10