diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/md5.h | 6 | ||||
-rw-r--r-- | include/tng_io.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/md5.h b/include/md5.h index d618489..5aef902 100644 --- a/include/md5.h +++ b/include/md5.h @@ -89,13 +89,13 @@ extern "C" #endif /* DECLSPECDLLEXPORT */ /* Initialize the algorithm. */ -void DECLSPECDLLEXPORT tng_md5_init(md5_state_t *pms); +void DECLSPECDLLEXPORT md5_init(md5_state_t *pms); /* Append a string to the message. */ -void DECLSPECDLLEXPORT tng_md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); +void DECLSPECDLLEXPORT md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); /* Finish the message and return the digest. */ -void DECLSPECDLLEXPORT tng_md5_finish(md5_state_t *pms, md5_byte_t digest[16]); +void DECLSPECDLLEXPORT md5_finish(md5_state_t *pms, md5_byte_t digest[16]); #ifdef __cplusplus } /* end extern "C" */ diff --git a/include/tng_io.h b/include/tng_io.h index c7cb9ba..df99d52 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -119,7 +119,7 @@ * * @subsection c_subsec C * - * Example writing data to a TNG file (just an extract): + * Example writing data to a TNG file (just an excerpt): * \code * for ( step = 1; step < step_num; step++ ) * { |