13 lines
175 B
C
13 lines
175 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include "heclib.h"
|
|
|
|
void test_function() {
|
|
}
|
|
|
|
int main(void) {
|
|
test_function();
|
|
printf("All tests passed\n");
|
|
return 0;
|
|
}
|