summaryrefslogtreecommitdiffstats
path: root/šola/p2/dn/naloga2.c
blob: 09915a69f1f95eafc67b20a66d107064df3585d1 (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
35
36
/*

   Prevajanje in poganjanje skupaj z datoteko test01.c:

   gcc -D=test test01.c naloga2.c
   ./a.out


*/

#include <stdio.h>
#include "naloga2.h"

void zamenjaj (int ** a, int ** b) {
	int * tmp = *b;
	*b = *a;
	*a = tmp;
}

void uredi (int ** a, int ** b, int ** c) {
	if (**a > **b)
		zamenjaj(a, b);
	if (**b > **c)
		zamenjaj(b, c);
	if (**a > **b)
		zamenjaj(a, b);
}

#ifndef test

int main() {
	// koda za ro"cno testiranje (po "zelji)
	return 0;
}

#endif