c++/ukazatele/barvicky.h
author František Kučera <franta-hg@frantovo.cz>
Sun Nov 20 18:22:56 2016 +0100 (2016-11-20)
changeset 39 988b56d4a7b8
permissions -rw-r--r--
libevent: identifikace serverových soketů a jednotlivých spojení (pomocí čísel FD)
     1 #include <string>
     2 
     3 using namespace std;
     4 
     5 const int BARVA_CERVENA = 1;
     6 const int BARVA_ZELENA  = 2;
     7 
     8 string obarvi (string text, int barva);
     9 string obarvi (const char * text, int barva);
    10