From 249f4423ee1c28e7f8ad6fdfff6c61a1f3e6d53d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 25 Nov 2019 01:14:39 +1100 Subject: Cleanup: doxygen comments Also correct some outdated symbol references, add missing 'name' commands. --- source/blender/blenlib/intern/path_util.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'source/blender/blenlib/intern/path_util.c') diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index 725b6f8937a..dff1f77c1ab 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -57,8 +57,10 @@ #ifdef WIN32 -/** Return true if the path is absolute ie starts with a drive specifier - * (eg A:\) or is a UNC path. */ +/** + * Return true if the path is absolute ie starts with a drive specifier + * (eg A:\) or is a UNC path. + */ static bool BLI_path_is_abs(const char *name); #endif /* WIN32 */ @@ -444,8 +446,10 @@ static int BLI_path_unc_prefix_len(const char *path) #if defined(WIN32) -/** Return true if the path is absolute ie starts with a drive specifier - * (eg A:\) or is a UNC path. */ +/** + * Return true if the path is absolute ie starts with a drive specifier + * (eg A:\) or is a UNC path. + */ static bool BLI_path_is_abs(const char *name) { return (name[1] == ':' && (name[2] == '\\' || name[2] == '/')) || BLI_path_is_unc(name); -- cgit v1.2.3