From 855d603795e6220bbc604fdad86eaebaaaf99629 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 17 Mar 2024 13:21:33 -0400 Subject: [PATCH] docs + prettier --- apps/room/app.js | 2 +- src/ssb.h | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/room/app.js b/apps/room/app.js index 1beefe22..b418aa27 100644 --- a/apps/room/app.js +++ b/apps/room/app.js @@ -10,4 +10,4 @@ async function main() { `); } -main(); \ No newline at end of file +main(); diff --git a/src/ssb.h b/src/ssb.h index e551f76f..c208f4af 100644 --- a/src/ssb.h +++ b/src/ssb.h @@ -40,8 +40,15 @@ typedef enum _tf_ssb_change_t k_tf_ssb_change_remove, } tf_ssb_change_t; +/** +** Flags describing the structure of a message. +*/ typedef enum _tf_ssb_message_flags_t { + /** + ** The sequence field precedes the author field if specified. The + ** other way around, otherwise. + */ k_tf_ssb_message_flag_sequence_before_author = 1, } tf_ssb_message_flags_t;