summaryrefslogtreecommitdiff
path: root/atari
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-08 12:35:11 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-08 12:35:11 +0000
commit8f64d5d223a6ccc60f04e815355c9d3f216a4410 (patch)
tree5ae4e823e45221cd6a92eead6fd5060c0430bec3 /atari
parentf287379a7cca0717166119ecbf15b4e2dcdbfc56 (diff)
downloadnetsurf-8f64d5d223a6ccc60f04e815355c9d3f216a4410.tar.gz
netsurf-8f64d5d223a6ccc60f04e815355c9d3f216a4410.tar.bz2
Improve Doxygen documentation
Diffstat (limited to 'atari')
-rw-r--r--atari/file.c2
-rw-r--r--atari/plot/fontplot.c16
2 files changed, 9 insertions, 9 deletions
diff --git a/atari/file.c b/atari/file.c
index 8008e47c1..b6d465f91 100644
--- a/atari/file.c
+++ b/atari/file.c
@@ -48,7 +48,7 @@
* NULL on input and if not NULL set to the total
* output length on output.
* @param[in] nelm The number of elements.
- * @param[in] ... The elements of the path as string pointers.
+ * @param[in] ap The elements of the path as string pointers.
* @return NSERROR_OK and the complete path is written to str
* or error code on faliure.
*/
diff --git a/atari/plot/fontplot.c b/atari/plot/fontplot.c
index 3d5526bd4..97f3503cb 100644
--- a/atari/plot/fontplot.c
+++ b/atari/plot/fontplot.c
@@ -46,17 +46,17 @@ void dump_font_drivers(void)
/**
- * Create an new text plotter object
+ * Create an new text plotter object.
*
- * Available: "vdi", "freetype", "internal"
- * \param vdihandle the vdi handle to act upon,
- * \param name selector ID (string) of the font plotter.
- * flags flags configration flags of the plotter,
- * available flags:
+ * Available: "vdi", "freetype", "internal"
+ *
+ * \param vdihandle the vdi handle to act upon,
+ * \param name selector ID (string) of the font plotter.
+ * \param flags configration flags of the plotter, available flags:
* FONTPLOT_FLAG_MONOGLYPH - Enable 1 bit font plotting
- * \param error set to != 0 when errors occur
+ * \param error set to != 0 when errors occur
* \return the new font plotter instance on success, or NULL on failure.
-*/
+ */
FONT_PLOTTER new_font_plotter(int vdihandle, char * name, unsigned long flags,
int * error)
{