13 lines
169 B
C
13 lines
169 B
C
|
//
|
||
|
// Created by auric on 2/21/24.
|
||
|
//
|
||
|
|
||
|
#ifndef NPRINT_H
|
||
|
#define NPRINT_H
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
void nprint(const char *tag, const char *format, ...);
|
||
|
|
||
|
#endif //NPRINT_H
|