comparison TestPriorityQueue.c @ 3:500d0e2fabfb

made pure C and added .brch__defaul and eol handling
author Me@portablequad
date Sat, 11 Feb 2012 20:27:13 -0800
parents 9ecc993a29ea
children
comparison
equal deleted inserted replaced
0:e94503253952 1:da5a56cb37f5
12 12
13 static PrioQueueStruc *Q; 13 static PrioQueueStruc *Q;
14 static char *first,*second,*third; 14 static char *first,*second,*third;
15 15
16 int init_suite (void) { 16 int init_suite (void) {
17 if (NULL == (Q= makeVMSPrioQ())) return -1; 17 if (NULL == (Q= makePrioQ())) return -1;
18 else return 0; 18 else return 0;
19 } 19 }
20 20
21 int clean_suite (void) { 21 int clean_suite (void) {
22 return 0; 22 return 0;