10 lines
166 B
C
10 lines
166 B
C
/* Prototipi funkcij in spremenljivk */
|
|
extern int vrednost;
|
|
extern int* kazalec;
|
|
|
|
void izpisi_pozdrav();
|
|
int vrni_vsoto(int a, int b);
|
|
void izpisi_niz(char* niz);
|
|
|
|
|