forked from 131/lab3_test
16 lines
261 B
C
16 lines
261 B
C
#include <stdio.h>
|
|
#include "munit.h"
|
|
#include "aux_lib.h"
|
|
|
|
static const MunitSuite test_suite = {
|
|
//FILL ME
|
|
};
|
|
|
|
int
|
|
main(int argc, const char *argv[])
|
|
{
|
|
munit_suite_main(&test_suite, (void *) "string library test", argc, (char * const*) argv);
|
|
return 0;
|
|
}
|
|
|