blob: 79389503838da0c413673e8f9f7a59ea3ab754f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
Prevajanje in poganjanje skupaj z datoteko test01.c:
gcc -D=test test01.c naloga1.c
./a.out
*/
#include <stdio.h>
#include <stdlib.h>
#include "naloga1.h"
int * poisci (int * t, int * dolzina, int ** konec) {
*konec = t;
while (**konec)
(*konec)++;
(*konec)--;
while (*t)
t--;
t++;
*dolzina = *konec - t + 1;
return t;
}
#ifndef test
int main () {
// koda za ro"cno testiranje (po "zelji)
return 0;
}
#endif
|