Moved makelib
[repair.git] / Repair / RepairInterpreter / test.h
1 /* Defines interfaces for the applications and exports function calls that  
2    the applications should use instead of the standard ones. */
3
4 #ifndef TEST_H
5 #define TEST_H
6 void initializeanalysis();
7 unsigned long benchmark();  /* do analysis */
8 void doanalysis();  /* do analysis */ 
9 void doanalysis2(); /* break the specs and do analysis */
10 void doanalysis3(); /* insert errors and do analysis */
11 void doanalysisfordebugging(char *msg );
12 void resetanalysis();
13 void addmapping(char *, void *,char *);
14 void addintmapping(char *key, int value);
15 void alloc(void *ptr,int size);
16 void dealloc(void *ptr);
17 void *ourcalloc(size_t nmemb, size_t size);
18 void *ourmalloc(size_t size);
19 void ourfree(void *ptr);
20 void *ourrealloc(void *ptr, size_t size);
21 #endif