aboutsummaryrefslogtreecommitdiffstats
path: root/printf.c
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.c
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.c')
-rw-r--r--printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/printf.c b/printf.c
index 342d91c..aa34cbd 100644
--- a/printf.c
+++ b/printf.c
@@ -691,7 +691,7 @@ int vsnprintf(char* buffer, size_t count, const char* format, va_list va)
}
-int oprintf(void (*out)(char character), const char* format, ...)
+int fctprintf(void (*out)(char character), const char* format, ...)
{
va_list va;
va_start(va, format);