10 lines
115 B
C
10 lines
115 B
C
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include "../lib/util.h"
|
|
|
|
void test_util() {
|
|
assert(true);
|
|
|
|
return;
|
|
}
|