summaryrefslogtreecommitdiff
path: root/zap/src/strfill.c
diff options
context:
space:
mode:
Diffstat (limited to 'zap/src/strfill.c')
-rw-r--r--zap/src/strfill.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/zap/src/strfill.c b/zap/src/strfill.c
deleted file mode 100644
index bd0af33..0000000
--- a/zap/src/strfill.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- Copyright 2022 Gabriel Jensen.
- This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
- If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
-*/
-
-#include <zap/priv.h>
-
-#include <zap/mem.h>
-
-#include <stdint.h>
-
-void zap_strfill(char * const _str,char const _chr) {zap_memfill(_str,zap_strlen(_str),(unsigned char)_chr);}