You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
350 B
C
23 lines
350 B
C
#include "first.h"
|
|
|
|
#undef NDEBUG
|
|
#include <assert.h>
|
|
|
|
void test_array (void);
|
|
void test_base64 (void);
|
|
void test_buffer (void);
|
|
void test_burl (void);
|
|
void test_keyvalue (void);
|
|
void test_request (void);
|
|
|
|
int main() {
|
|
test_array();
|
|
test_base64();
|
|
test_buffer();
|
|
test_burl();
|
|
test_keyvalue();
|
|
test_request();
|
|
|
|
return 0;
|
|
}
|