aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6583269..5ee138e 100644
--- a/README.md
+++ b/README.md
@@ -51,8 +51,8 @@ int sprintf(char* buffer, const char* format, ...);
int snprintf(char* buffer, size_t count, const char* format, ...);
int vsnprintf(char* buffer, size_t count, const char* format, va_list va);
-// write to output function (instead of buffer)
-int oprintf(void (*out)(char character), const char* format, ...);
+// call output function (instead of buffer)
+int fctprintf(void (*out)(char character), const char* format, ...);
```