1.1 --- a/include/SDL_test_crc32.h Sun Nov 23 20:40:48 2014 +0100
1.2 +++ b/include/SDL_test_crc32.h Sun Nov 23 20:46:34 2014 +0100
1.3 @@ -70,27 +70,27 @@
1.4 /* ---------- Function Prototypes ------------- */
1.5
1.6 /**
1.7 - * /brief Initialize the CRC context
1.8 + * \brief Initialize the CRC context
1.9 *
1.10 * Note: The function initializes the crc table required for all crc calculations.
1.11 *
1.12 - * /param crcContext pointer to context variable
1.13 + * \param crcContext pointer to context variable
1.14 *
1.15 - * /returns 0 for OK, -1 on error
1.16 + * \returns 0 for OK, -1 on error
1.17 *
1.18 */
1.19 int SDLTest_Crc32Init(SDLTest_Crc32Context * crcContext);
1.20
1.21
1.22 /**
1.23 - * /brief calculate a crc32 from a data block
1.24 + * \brief calculate a crc32 from a data block
1.25 *
1.26 - * /param crcContext pointer to context variable
1.27 - * /param inBuf input buffer to checksum
1.28 - * /param inLen length of input buffer
1.29 - * /param crc32 pointer to Uint32 to store the final CRC into
1.30 + * \param crcContext pointer to context variable
1.31 + * \param inBuf input buffer to checksum
1.32 + * \param inLen length of input buffer
1.33 + * \param crc32 pointer to Uint32 to store the final CRC into
1.34 *
1.35 - * /returns 0 for OK, -1 on error
1.36 + * \returns 0 for OK, -1 on error
1.37 *
1.38 */
1.39 int SDLTest_crc32Calc(SDLTest_Crc32Context * crcContext, CrcUint8 *inBuf, CrcUint32 inLen, CrcUint32 *crc32);
1.40 @@ -102,11 +102,11 @@
1.41
1.42
1.43 /**
1.44 - * /brief clean up CRC context
1.45 + * \brief clean up CRC context
1.46 *
1.47 - * /param crcContext pointer to context variable
1.48 + * \param crcContext pointer to context variable
1.49 *
1.50 - * /returns 0 for OK, -1 on error
1.51 + * \returns 0 for OK, -1 on error
1.52 *
1.53 */
1.54