summaryrefslogtreecommitdiff
path: root/qstd/str.c
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-12-27 18:52:48 +1100
committerquou <quou@disroot.org>2024-12-27 18:52:48 +1100
commitd920e5d62020d751ccaa3491cc66275ade749011 (patch)
treee806a95c598e255f9883de98cc350a3b9279d0ce /qstd/str.c
parente8c93463b2ae5114f0c88e768e5625abac9d5a50 (diff)
building and running on windows with visual studio
Diffstat (limited to 'qstd/str.c')
-rw-r--r--qstd/str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qstd/str.c b/qstd/str.c
index 2c74d4b..5dd97c4 100644
--- a/qstd/str.c
+++ b/qstd/str.c
@@ -39,9 +39,9 @@ int string_equal(const char* a, const char* b) {
int string_copy(char* dst, const char* src) {
int i;
- for (i = 0; *src; src++, dst++, i++) {
+ for (i = 0; *src; src++, dst++, i++)
*dst = *src;
- }
+ *dst = 0;
return i;
}