Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/intern/path_util.c
| Context not available. | |||||
| /* So far, only wildcards in last group of the pattern... */ | /* So far, only wildcards in last group of the pattern... */ | ||||
| only_wildcards = true; | only_wildcards = true; | ||||
| } | } | ||||
| /* Only one group in the pattern, so even if its only made of wildcard(s), it is assumed vaid. */ | /* Only one group in the pattern, so even if its only made of wildcard(s), it is assumed valid. */ | ||||
luzpaz: //it is assumed// `void` or `valid` ? | |||||
Not Done Inline Actionsvalid. brecht: `valid`. | |||||
| return false; | return false; | ||||
| } | } | ||||
| Context not available. | |||||
| /* Converts "/foo/bar.txt" to "/foo/" and "bar.txt" | /* Converts "/foo/bar.txt" to "/foo/" and "bar.txt" | ||||
| * - wont change 'string' | * - wont change 'string' | ||||
| * - wont create any directories | * - wont create any directories | ||||
| * - dosnt use CWD, or deal with relative paths. | * - doesn't use CWD, or deal with relative paths. | ||||
| * - Only fill's in *dir and *file when they are non NULL | * - Only fill's in *dir and *file when they are non NULL | ||||
| * */ | * */ | ||||
| void BLI_split_dirfile(const char *string, char *dir, char *file, const size_t dirlen, const size_t filelen) | void BLI_split_dirfile(const char *string, char *dir, char *file, const size_t dirlen, const size_t filelen) | ||||
| Context not available. | |||||
it is assumed void or valid ?