]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib: Reformat seq-set-builder.h
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Wed, 3 Dec 2025 00:39:53 +0000 (02:39 +0200)
committerTimo Sirainen <timo.sirainen@open-xchange.com>
Wed, 3 Dec 2025 20:02:34 +0000 (22:02 +0200)
src/lib/seq-set-builder.h

index 37d9cbcc1dda9c7d20429188d326daf9885f69fa..0e2a73eb88e665b0c55d02f7e758ef9c1239b24e 100644 (file)
@@ -3,12 +3,14 @@
 
 /* Append a seqset to the given string. */
 struct seqset_builder *seqset_builder_init(string_t *str);
-/* Add seq to the string. The string must not have been modified before the previous
-   seqset_builder_add() call, since the last sequence in it may be rewritten. */
+/* Add seq to the string. The string must not have been modified before the
+   previous seqset_builder_add() call, since the last sequence in it may be
+   rewritten. */
 void seqset_builder_add(struct seqset_builder *builder, uint32_t seq);
-/* Add the seq to the string, but only if the string length stays below max_len.
-   Returns TRUE if added, FALSE if not. */
-bool seqset_builder_try_add(struct seqset_builder *builder, size_t max_len, uint32_t seq);
+/* Add the seq to the string, but only if the string length stays below
+   max_len. Returns TRUE if added, FALSE if not. */
+bool seqset_builder_try_add(struct seqset_builder *builder,
+                           size_t max_len, uint32_t seq);
 /* Deinitialize the builder */
 void seqset_builder_deinit(struct seqset_builder **builder);