]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(enum canonicalize_mode_t): Reformat comments to fit in 80 columns.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Aug 2004 22:42:37 +0000 (22:42 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 2 Aug 2004 22:42:37 +0000 (22:42 +0000)
lib/canonicalize.h

index 84f8fe5ec730cf37ee8fde21c36d5f0b9ea7fba6..3cc083ae85bf8cff7b86136933fdc319a8a20815 100644 (file)
@@ -3,16 +3,21 @@
 
 enum canonicalize_mode_t
   {
-    CAN_EXISTING = 0,  /* All path components must exist. */
-    CAN_ALL_BUT_LAST = 1,  /* All path components exluding last one must exist. */
-    CAN_MISSING = 2,  /* No requirements on components existence. */
+    /* All path components must exist.  */
+    CAN_EXISTING = 0,
+
+    /* All path components excluding last one must exist.  */
+    CAN_ALL_BUT_LAST = 1,
+
+    /* No requirements on components existence.  */
+    CAN_MISSING = 2
   };
 typedef enum canonicalize_mode_t canonicalize_mode_t;
 
 char *canonicalize_filename_mode (const char *, canonicalize_mode_t);
 
-#if !HAVE_CANONICALIZE_FILE_NAME
+# if !HAVE_CANONICALIZE_FILE_NAME
 char *canonicalize_file_name (const char *);
-#endif
+# endif
 
 #endif /* !CANONICALIZE_H_ */