toaruos/userspace/lib/testing.c
2014-06-07 23:13:29 -07:00

19 lines
411 B
C

/* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2014 Kevin Lange
*/
#include <stdlib.h>
#include <stdio.h>
#include "testing.h"
void notice(char * type, char * fmt, ...) {
va_list argp;
va_start(argp, fmt);
/* core-tests header */
printf("core-tests : %s : ", type);
vprintf(fmt, argp);
printf("\n");
}