]> granicus.if.org Git - graphviz/commitdiff
convert comments to doxygen format in maze.h
authorCosta Shulyupin <constantine.shulyupin@gmail.com>
Tue, 26 Apr 2022 04:32:01 +0000 (07:32 +0300)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 5 May 2022 04:41:50 +0000 (21:41 -0700)
lib/ortho/maze.h

index 2419a16e2da36a42e55827210f10f49b044d1ed5..bef78d1a7451ca3d807bc2fd57e0a5e5f88803a7 100644 (file)
@@ -25,15 +25,15 @@ enum {M_RIGHT=0, M_TOP, M_LEFT, M_BOTTOM};
 #define MZ_SMALLV   8
 #define MZ_SMALLH  16
 
-  /* cell corresponds to node */
+  /// @brief cell corresponds to node
 #define IsNode(cp) (cp->flags & MZ_ISNODE)  
-  /* cell already inserted in vertical channel */
+  /// @brief cell already inserted in vertical channel
 #define IsVScan(cp) (cp->flags & MZ_VSCAN)  
-  /* cell already inserted in horizontal channel */
+  /// @brief cell already inserted in horizontal channel
 #define IsHScan(cp) (cp->flags & MZ_HSCAN)
-  /* cell has small height corresponding to a small height node */
+  /// @brief cell has small height corresponding to a small height node
 #define IsSmallV(cp) (cp->flags & MZ_SMALLV)
-  /* cell has small width corresponding to a small width node */
+  /// @brief cell has small width corresponding to a small width node
 #define IsSmallH(cp) (cp->flags & MZ_SMALLH)
 
 typedef struct cell {