doc: internal functions

This commit is contained in:
Gabor Adam Toth 2011-05-28 20:24:36 +02:00
parent 0c99850a45
commit 019b069af2
1 changed files with 12 additions and 3 deletions

View File

@ -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. */