int kolor;
} atrybut;
-atrybut const bombki[] = {
+static atrybut const bombki[] = {
{A_POGRUBIONY, KOLOR_CZERWONY},
{A_POGRUBIONY, KOLOR_NIEBIESKI},
{A_POGRUBIONY, KOLOR_BRAZOWY},
{A_POGRUBIONY, KOLOR_CYJAN},
{A_POGRUBIONY, KOLOR_BIALY},
};
-int const ile_b = sizeof bombki / sizeof *bombki;
+static int const ile_b = sizeof bombki / sizeof *bombki;
-atrybut const choinka = {0, KOLOR_ZIELONY};
-atrybut const podstawa = {0, KOLOR_BRAZOWY};
-atrybut const podpis = {A_POGRUBIONY, KOLOR_CZERWONY};
-atrybut const gwiazdka = {A_POGRUBIONY, KOLOR_BRAZOWY};
+static atrybut const choinka = {0, KOLOR_ZIELONY};
+static atrybut const podstawa = {0, KOLOR_BRAZOWY};
+static atrybut const podpis = {A_POGRUBIONY, KOLOR_CZERWONY};
+static atrybut const gwiazdka = {A_POGRUBIONY, KOLOR_BRAZOWY};
-void inicjuj_rng()
+static void inicjuj_rng()
{
unsigned ziarno = 0;
FILE* f = fopen("/dev/urandom", "rb");
srand(ziarno);
}
-char const rysunek[] =
+static char const rysunek[] =
" *\n"
" /.\\\n"
" /..'\\\n"
" jgs ^^^[_]^^^\n"
;
-void ustaw(atrybut const* attr)
+static void ustaw(atrybut const* attr)
{
static atrybut ostatni = {-1, -1};
if (ostatni.attr == attr->attr && ostatni.kolor == attr->kolor) return;