ref: 3cc247773294861e50209f6e4f11224dd89112fb
dir: /test/libtap.c/
/* Copyright (c) 2013, 2014, Louis P. Santillan <[email protected]> All rights reserved. */ #include <stdio.h> #include "tap.h" void plan( unsigned int num ) { printf( "1..%d\n", num ); } unsigned int ok( unsigned int ok, const char* msg ) { static int testnum = 0; printf( "%s %d - %s\n", ( ok ? "ok" : "not ok" ), ++testnum, msg ); return ok; }