Cleanup/refactor: Add new BLI_string_util.

Things like `BLI_uniquename` had nothing, but really nothing to do in
BLI_path_util files!

Also, got rid of length limitation in `BLI_uniquename_cb`, we can use
alloca here to avoid overhead of malloc while keeping free size (within
reasonable limits of course).
This commit is contained in:
2017-01-16 17:33:34 +01:00
parent 3748defefe
commit b997988323
49 changed files with 319 additions and 180 deletions

View File

@@ -32,6 +32,7 @@
#include "BLI_utildefines.h"
#include "BLI_math.h"
#include "BLI_string_utils.h"
#include "BLT_translation.h"