shithub: pdffs

ref: 97218f13586cad7be42bdd1ce28072d10df1c2f9
dir: /main.c/

View raw version
#include <u.h>
#include <libc.h>

void
main(int argc, char **argv)
{
	USED(argc); USED(argv);

	quotefmtinstall();

#ifdef TEST
#define T(x) \
	void x(void); \
	x();

	T(test_pdfstring);
	T(test_pdfname);
#endif

	exits(nil);
}