From d32390a9432764c8a9d3b7fe5d30d4ff357df0df Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Wed, 14 Nov 2018 11:21:19 +0100 Subject: [PATCH] Doxygen for Load_FLI() Test_FLI() --- src/miscfileformats.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/miscfileformats.c b/src/miscfileformats.c index 8f2541a8..d0d01a00 100644 --- a/src/miscfileformats.c +++ b/src/miscfileformats.c @@ -4507,6 +4507,11 @@ static void Load_FLI_Header(FILE * file, T_FLIC_Header * header) } } +/** + * Test for the Autodesk Animator FLI/FLC format. + * + * Not to be confused with Commodore 64 FLI. + */ void Test_FLI(T_IO_Context * context, FILE * file) { T_FLIC_Header header; @@ -4532,6 +4537,11 @@ void Test_FLI(T_IO_Context * context, FILE * file) } } +/** + * Load file in the Autodesk Animator FLI/FLC format. + * + * Not to be confused with Commodore 64 FLI. + */ void Load_FLI(T_IO_Context * context) { FILE * file;