1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* * printf.h * * Created on: Sep 5, 2025 * Author: sowgro */ #ifndef INC_ACTIVITIES_PRINTF_H_ #define INC_ACTIVITIES_PRINTF_H_ int printf(const char *format, ...); int puts(const char *string); #endif /* INC_ACTIVITIES_PRINTF_H_ */