libutil

C Utility Library
git clone http://git.omkov.net/libutil
Log | Tree | Refs | README | LICENCE | Download

AuthorJamozed <[email protected]>
Date2021-02-21 22:04:53
Commit102f6ff42fbee51ffe6a6aa277967b6c519c0d60
Parent4b7a4486ddf5e17e5740d8a9e99a9ed4f4d9c2e0

strconv: Split strconv.c into multiple files

Diffstat

R src/strconv.c -> src/strtou.c | 2 +-
M src/strconv.h | 1 +

2 files changed, 2 insertions, 1 deletions

diff --git a/src/strconv.h b/src/strconv.h
index 182e322..11e91c8 100644
--- a/src/strconv.h
+++ b/src/strconv.h
@@ -1,6 +1,6 @@
 // strconv.h, version 1.0.0
 // String conversion header file for OMKOV lib
-// Copyright (C) 2020, Jakob Wakeling
+// Copyright (C) 2021, Jakob Wakeling
 // All rights reserved.
 
 /*
diff --git a/src/strconv.c b/src/strtou.c
similarity index 99%
rename from src/strconv.c
rename to src/strtou.c
index 7e9afa8..d320eef 100644
--- a/src/strconv.c
+++ b/src/strtou.c
@@ -1,4 +1,4 @@
-// strconv.c, version 1.0.0
+// strtou.c, version 1.0.0
 // String conversion source file for OMKOV lib
 // Copyright (C) 2021, Jakob Wakeling
 // All rights reserved.