11 lines
129 B
C
11 lines
129 B
C
|
|
||
|
#ifndef PROCPS_NG_TESTS_H
|
||
|
#define PROCPS_NG_TESTS_H
|
||
|
|
||
|
struct test_func {
|
||
|
int (*func)(void *data);
|
||
|
char *name;
|
||
|
};
|
||
|
|
||
|
#endif
|