ref: 70285956de156f146984f42c8ffa42401d42edd7
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; }