mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
18 lines
225 B
C
18 lines
225 B
C
|
|
#include <stdio.h>
|
|
|
|
#include "mars.h"
|
|
|
|
void unittest_speller();
|
|
void unittest_importHint();
|
|
void unittest_aa();
|
|
|
|
void unittests()
|
|
{
|
|
#if UNITTEST
|
|
unittest_speller();
|
|
unittest_importHint();
|
|
unittest_aa();
|
|
#endif
|
|
}
|