99d52894f6
Start to put in a unit test for the list functionality. This commit was SVN r390.
16 строки
256 B
C
16 строки
256 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef LAM_SUPPORT_H
|
|
#define LAM_SUPPORT_H
|
|
|
|
void test_init(char *a);
|
|
void test_success(void);
|
|
void test_failure(char *a);
|
|
int test_verify(char *expected_result, char *test_result);
|
|
int test_finalize(void);
|
|
|
|
#endif /* LAM_SUPPORT_H */
|
|
|