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