From 20daced691ed516755a0b4a5bbc93e447a55a63b Mon Sep 17 00:00:00 2001 From: Gabor Adam Toth Date: Sat, 28 May 2011 20:29:19 +0200 Subject: [PATCH] doc: internal functions --- include/psyc/packet.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/include/psyc/packet.h b/include/psyc/packet.h index 3767b62..5407ba2 100644 --- a/include/psyc/packet.h +++ b/include/psyc/packet.h @@ -137,7 +137,10 @@ psycModifier psyc_newModifier2 (char oper, return psyc_newModifier(oper, &n, &v, flag); } -/** Get the total length of a modifier when rendered. */ +/** + * \internal + * Get the total length of a modifier when rendered. + */ size_t psyc_getModifierLength (psycModifier *m); /** @@ -146,7 +149,10 @@ size_t psyc_getModifierLength (psycModifier *m); */ psycListFlag psyc_checkListLength (psycList *list); -/** Get the total length of a list when rendered. */ +/** + * \internal + * Get the total length of a list when rendered. + */ psycListFlag psyc_getListLength (psycList *list); /** @@ -155,7 +161,9 @@ psycListFlag psyc_getListLength (psycList *list); */ psycPacketFlag psyc_checkPacketLength (psycPacket *p); -/** Calculate and set the rendered length of packet parts and total packet length. */ +/** + * Calculate and set the rendered length of packet parts and total packet length. + */ size_t psyc_setPacketLength (psycPacket *p); /** Create new list. */