diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 21:56:54 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 21:56:54 +0200 |
commit | 5062b051afd47c83fe0e976c5060e8adc08db27b (patch) | |
tree | aabdef16552ca245a0300532fb72e8a84db1adb5 | |
parent | fe47ef3fd93868cbb6ccef92a7fad9ac64cc2122 (diff) |
Rename vlprintf to lvprintf as it makes more sense
-rw-r--r-- | clog.c | 4 | ||||
-rw-r--r-- | clog.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -11,13 +11,13 @@ int lprintf(const char *format, ...) va_list ap; va_start(ap, format); - int n = vlprintf(format, ap); + int n = lvprintf(format, ap); va_end(ap); return n; } -int vlprintf(const char *format, va_list ap) +int lvprintf(const char *format, va_list ap) { time_t timer = time(NULL); struct tm *tm_info = localtime(&timer); @@ -5,6 +5,6 @@ int lprintf(const char *format, ...); -int vlprintf(const char *format, va_list ap); +int lvprintf(const char *format, va_list ap); #endif |