[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On 2005-01-20, Evert Glebbeek <eglebbk@xxxxxxxxxx> wrote:
> Proposed documentation update attached.
@retval is only a marker which doesn't necessarily add the
"Returns..." text. On text output formats it will be stripped,
so things like this won't look very good.
@@int @is_mono_font(FONT *f)
@xref is_color_font
@shortdesc Returns TRUE if a font is a monochrome font.
This function returns TRUE if the font is an Allegro monochrome font (as
opposed to a colour font).
@retval
TRUE if the font is a monochrome font, FALSE if it is not.
May convert into:
int is_mono_font(FONT *f)
This function returns TRUE if the font is an Allegro monochrome font (as
opposed to a colour font).
TRUE if the font is a monochrome font, FALSE if it is not.