UoS³ Flight Computer Firmware
 All Data Structures Files Functions Groups Pages
debug.c
Go to the documentation of this file.
1 
11 #include "../debug.h"
12 
13 #include <stdarg.h>
14 #include <stdio.h>
15 
16 void Debug_print(char* fmt, ...) {
17  va_list arg;
18  va_start(arg, fmt);
19  vprintf(fmt, arg);
20  va_end(arg);
21 }
22 
void Debug_print(char *fmt,...)
Definition: debug.c:16