chiark / gitweb /
@@@ man wip
[mLib] / struct / hash.3
index 19522ee76cec02af13bcdf4ffa03890e2cbda38d..c06727516ed58322867dc12cc7789d471b95696d 100644 (file)
@@ -38,15 +38,16 @@ hash \- low-level hashtable implementation
 .nf
 .B "#include <mLib/hash.h>"
 
+.ta 2n
 .B "typedef struct {"
-.B "\h'4n'uint32 mask;"
-.B "\h'4n'hash_base **v;"
-.B "\h'4n'arena *a;"
+.B "   uint32 mask;"
+.B "   hash_base **v;"
+.B "   arena *a;"
 .B "} hash_table;"
 
 .B "typedef struct {"
-.B "\h'4n'hash_base *next;"
-.B "\h'4n'uint32 hash;"
+.B "   hash_base *next;"
+.B "   uint32 hash;"
 .B "} hash_base;"
 
 .B "typedef struct { ...\& } hash_iter;"