summaryrefslogtreecommitdiff
path: root/include/SDL_test_md5.h
diff options
context:
space:
mode:
authorPhilipp Wiesemann <philipp.wiesemann@arcor.de>2014-11-23 20:46:34 +0100
committerPhilipp Wiesemann <philipp.wiesemann@arcor.de>2014-11-23 20:46:34 +0100
commit581758565f9f81c8e0c654491c90919da3d53e03 (patch)
treeca9815f9b66df5e65b17e6179b614e8eff4f457d /include/SDL_test_md5.h
parent7aa87187860455d0942aab60f641c0681a9553a3 (diff)
Fixed doxygen tags in header file documentation comments.
Diffstat (limited to 'include/SDL_test_md5.h')
-rw-r--r--include/SDL_test_md5.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/SDL_test_md5.h b/include/SDL_test_md5.h
index 029e164bf8..7bc39b2209 100644
--- a/include/SDL_test_md5.h
+++ b/include/SDL_test_md5.h
@@ -78,9 +78,9 @@ extern "C" {
/* ---------- Function Prototypes ------------- */
/**
- * /brief initialize the context
+ * \brief initialize the context
*
- * /param mdContext pointer to context variable
+ * \param mdContext pointer to context variable
*
* Note: The function initializes the message-digest context
* mdContext. Call before each new use of the context -
@@ -90,11 +90,11 @@ extern "C" {
/**
- * /brief update digest from variable length data
+ * \brief update digest from variable length data
*
- * /param mdContext pointer to context variable
- * /param inBuf pointer to data array/string
- * /param inLen length of data array/string
+ * \param mdContext pointer to context variable
+ * \param inBuf pointer to data array/string
+ * \param inLen length of data array/string
*
* Note: The function updates the message-digest context to account
* for the presence of each of the characters inBuf[0..inLen-1]
@@ -105,10 +105,10 @@ extern "C" {
unsigned int inLen);
-/*
- * /brief complete digest computation
+/**
+ * \brief complete digest computation
*
- * /param mdContext pointer to context variable
+ * \param mdContext pointer to context variable
*
* Note: The function terminates the message-digest computation and
* ends with the desired message digest in mdContext.digest[0..15].