aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: f0832a33e05bb3058910f6cc55d3648d14bee2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include "header.h"

int main(int argc, char **argv)
{
	test_pft_nacked();
	test_pft_percent();
	test_pft_string();
	test_pft_int_i();
	test_pft_int_d();
	test_ptf_uint();
	test_ptf_hex_low();
	test_ptf_hex_up();
	test_pft_ptr();
	test_pft_char();
	return 0;
}