From 019b069af21af806b49745e2eda41f9d3f5e2b6f Mon Sep 17 00:00:00 2001 From: Gabor Adam Toth Date: Sat, 28 May 2011 20:24:36 +0200 Subject: [PATCH] doc: internal functions --- include/psyc/packet.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/include/psyc/packet.h b/include/psyc/packet.h index 94d16f3..3767b62 100644 --- a/include/psyc/packet.h +++ b/include/psyc/packet.h @@ -92,7 +92,10 @@ typedef struct psycPacketFlag flag; ///< Packet flag. } psycPacket; -/** Check if a modifier needs length. */ +/** + * \internal + * Check if a modifier needs length. + */ static inline psycModifierFlag psyc_checkModifierLength (psycModifier *m) { @@ -137,13 +140,19 @@ psycModifier psyc_newModifier2 (char oper, /** Get the total length of a modifier when rendered. */ size_t psyc_getModifierLength (psycModifier *m); -/** Check if a list needs length. */ +/** + * \internal + * Check if a list needs length. + */ psycListFlag psyc_checkListLength (psycList *list); /** Get the total length of a list when rendered. */ psycListFlag psyc_getListLength (psycList *list); -/** Check if a packet needs length. */ +/** + * \internal + * Check if a packet needs length. + */ psycPacketFlag psyc_checkPacketLength (psycPacket *p); /** Calculate and set the rendered length of packet parts and total packet length. */