aboutsummaryrefslogtreecommitdiffstats
path: root/printf.h
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2018-05-18 17:50:04 +0200
committerMarco Paland <marco@paland.com>2018-05-18 17:50:04 +0200
commit0116b7491693306e613491b7ccc44743da6d60cb (patch)
tree87092a1fef3ea496e6dd00ca82062c05abfa3b2a /printf.h
parent9351e5b1ac8e3871bf8a37fc3c24c120cf0e5614 (diff)
downloadprintf-0116b7491693306e613491b7ccc44743da6d60cb.tar.gz
printf-0116b7491693306e613491b7ccc44743da6d60cb.tar.bz2
printf-0116b7491693306e613491b7ccc44743da6d60cb.zip
refactor(printf): changed oprintf() to fctprintf()
fctprintf() is more descriptive for its operation
Diffstat (limited to 'printf.h')
-rw-r--r--printf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/printf.h b/printf.h
index c0ba2ae..194f65f 100644
--- a/printf.h
+++ b/printf.h
@@ -87,7 +87,7 @@ int vsnprintf(char* buffer, size_t count, const char* format, va_list va);
* \param format A string that specifies the format of the output
* \return The number of characters that are sent to the output function, not counting the terminating null character
*/
-int oprintf(void (*out)(char character), const char* format, ...);
+int fctprintf(void (*out)(char character), const char* format, ...);
#ifdef __cplusplus