bulk changes

This commit is contained in:
2025-07-18 20:05:28 -04:00
parent 50e964d3a0
commit 1e08c7e33b
9 changed files with 196 additions and 83 deletions

View File

@@ -4,6 +4,15 @@
#include <stdarg.h>
#include <stdio.h>
int printfn(char *, ...);
/**
* Print a formatted message to stderr with program prefix and newline
* @param format Format string (printf-style)
* @param ... Variable arguments for formatting
* @return Number of characters printed
*/
int print_error_with_prefix(char *format, ...);
/* Legacy function name for backward compatibility */
#define printfn print_error_with_prefix
#endif