From 04e6cdccd2faf6ebd2e66e0074fc25db3718e883 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 24 Feb 2008 09:21:21 +0000 Subject: [PATCH] Rename mkdirs() to mkpath(). --- src/xpdev/dirwrap.c | 4 ++-- src/xpdev/dirwrap.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xpdev/dirwrap.c b/src/xpdev/dirwrap.c index 6591fb0e4f..eec35b1982 100644 --- a/src/xpdev/dirwrap.c +++ b/src/xpdev/dirwrap.c @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public License * @@ -1016,7 +1016,7 @@ BOOL DLLCALL wildmatchi(const char *fname, const char *spec, BOOL path) /****************************************************************************/ /* Creates all the necessary directories in the specified path */ /****************************************************************************/ -int DLLCALL mkdirs(const char* path) +int DLLCALL mkpath(const char* path) { const char* p=path; const char* tp; diff --git a/src/xpdev/dirwrap.h b/src/xpdev/dirwrap.h index dd7664fcd9..e68de1b337 100644 --- a/src/xpdev/dirwrap.h +++ b/src/xpdev/dirwrap.h @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public License * @@ -233,7 +233,7 @@ DLLEXPORT ulong DLLCALL delfiles(char *inpath, char *spec); DLLEXPORT char* DLLCALL backslash(char* path); DLLEXPORT BOOL DLLCALL wildmatch(const char *fname, const char *spec, BOOL path); DLLEXPORT BOOL DLLCALL wildmatchi(const char *fname, const char *spec, BOOL path); -DLLEXPORT int DLLCALL mkdirs(const char* path); +DLLEXPORT int DLLCALL mkpath(const char* path); #if defined(__unix__) -- GitLab