]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/stat.h
Comment changes
[libs/core.git] / source / fs / stat.h
index e6b20022b43338d97fd0485c2ac07686247df51c..9056c926d697ed03ae04df82c62d7e2ec8661455 100644 (file)
@@ -7,17 +7,13 @@
 namespace Msp {
 namespace FS {
 
-/**
-Gets information about a file.  Returns 0 on success or -1 on error.  This
+/** Gets information about a file.  Returns 0 on success or -1 on error.  This
 version can be used to check for file existence and get information in one
-call.
-*/
+call. */
 int stat(const Path &fn, struct stat &st);
 
-/**
-Returns information about a file.  This version throws an exception if an error
-occurs.
-*/
+/** Returns information about a file.  This version throws an exception if an
+error occurs. */
 struct stat stat(const Path &fn);
 
 /// Gets information about a file, without following symbolic links