mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
doc: internal functions
This commit is contained in:
parent
c4655b2d16
commit
d6f2408e3c
1 changed files with 12 additions and 3 deletions
|
@ -92,7 +92,10 @@ typedef struct
|
||||||
psycPacketFlag flag; ///< Packet flag.
|
psycPacketFlag flag; ///< Packet flag.
|
||||||
} psycPacket;
|
} psycPacket;
|
||||||
|
|
||||||
/** Check if a modifier needs length. */
|
/**
|
||||||
|
* \internal
|
||||||
|
* Check if a modifier needs length.
|
||||||
|
*/
|
||||||
static inline
|
static inline
|
||||||
psycModifierFlag psyc_checkModifierLength (psycModifier *m)
|
psycModifierFlag psyc_checkModifierLength (psycModifier *m)
|
||||||
{
|
{
|
||||||
|
@ -137,13 +140,19 @@ psycModifier psyc_newModifier2 (char oper,
|
||||||
/** Get the total length of a modifier when rendered. */
|
/** Get the total length of a modifier when rendered. */
|
||||||
size_t psyc_getModifierLength (psycModifier *m);
|
size_t psyc_getModifierLength (psycModifier *m);
|
||||||
|
|
||||||
/** Check if a list needs length. */
|
/**
|
||||||
|
* \internal
|
||||||
|
* Check if a list needs length.
|
||||||
|
*/
|
||||||
psycListFlag psyc_checkListLength (psycList *list);
|
psycListFlag psyc_checkListLength (psycList *list);
|
||||||
|
|
||||||
/** Get the total length of a list when rendered. */
|
/** Get the total length of a list when rendered. */
|
||||||
psycListFlag psyc_getListLength (psycList *list);
|
psycListFlag psyc_getListLength (psycList *list);
|
||||||
|
|
||||||
/** Check if a packet needs length. */
|
/**
|
||||||
|
* \internal
|
||||||
|
* Check if a packet needs length.
|
||||||
|
*/
|
||||||
psycPacketFlag psyc_checkPacketLength (psycPacket *p);
|
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. */
|
||||||
|
|
Loading…
Reference in a new issue