Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2019-12-25 22:16:43 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2019-12-25 22:16:43 +0300
commit6657fcc78375948ea04d860a015d146f2686a051 (patch)
tree388a42fcb2fad18fc0b9c1cacdb1ae68a6ea0338 /source/blender/blenlib/intern/path_util.c
parent9aab9970c6130e581ad22a0ece3880d51dd68c1e (diff)
Cleanup: Remove BLI_stringenc_path
Diffstat (limited to 'source/blender/blenlib/intern/path_util.c')
-rw-r--r--source/blender/blenlib/intern/path_util.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index cd1a0e2c328..dff1f77c1ab 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -157,20 +157,6 @@ void BLI_stringenc(
sprintf(string, "%s%.*d%s", head, numlen, MAX2(0, pic), tail);
}
-/**
- * Returns in area pointed to by string a string of the form "<dir><head><pic><tail>", where pic
- * is formatted as numlen digits with leading zeroes.
- */
-void BLI_stringenc_path(char *string,
- const char *dir,
- const char *head,
- const char *tail,
- unsigned short numlen,
- int pic)
-{
- sprintf(string, "%s%s%.*d%s", dir, head, numlen, MAX2(0, pic), tail);
-}
-
static int BLI_path_unc_prefix_len(const char *path); /* defined below in same file */
/* ******************** string encoding ***************** */