1 2 3 4 5 6 7 8 9 | #ifndef UTILS_PRINTCODE_H
#define UTILS_PRINTCODE_H
#include <stdio.h>
#include <stdio.h>
void printCode(FILE *out, size_t identLevel, const char *fmt, ...);
#endif // UTILS_PRINTCODE_H
|
1 2 3 4 5 6 7 8 9 | #ifndef UTILS_PRINTCODE_H
#define UTILS_PRINTCODE_H
#include <stdio.h>
#include <stdio.h>
void printCode(FILE *out, size_t identLevel, const char *fmt, ...);
#endif // UTILS_PRINTCODE_H
|