doxygen: Only use @since on public API functions.

This commit is contained in:
Uwe Hermann 2015-11-27 00:14:05 +01:00
parent 2cdd40205e
commit 89b3a0d8d1
1 changed files with 0 additions and 10 deletions

View File

@ -58,8 +58,6 @@
*
* @retval SR_OK Conversion successful.
* @retval SR_ERR Failure.
*
* @since 0.3.0
*/
SR_PRIV int sr_atol(const char *str, long *ret)
{
@ -92,8 +90,6 @@ SR_PRIV int sr_atol(const char *str, long *ret)
*
* @retval SR_OK Conversion successful.
* @retval SR_ERR Failure.
*
* @since 0.3.0
*/
SR_PRIV int sr_atoi(const char *str, int *ret)
{
@ -124,8 +120,6 @@ SR_PRIV int sr_atoi(const char *str, int *ret)
*
* @retval SR_OK Conversion successful.
* @retval SR_ERR Failure.
*
* @since 0.3.0
*/
SR_PRIV int sr_atod(const char *str, double *ret)
{
@ -158,8 +152,6 @@ SR_PRIV int sr_atod(const char *str, double *ret)
*
* @retval SR_OK Conversion successful.
* @retval SR_ERR Failure.
*
* @since 0.3.0
*/
SR_PRIV int sr_atof(const char *str, float *ret)
{
@ -190,8 +182,6 @@ SR_PRIV int sr_atof(const char *str, float *ret)
*
* @retval SR_OK Conversion successful.
* @retval SR_ERR Failure.
*
* @since 0.3.0
*/
SR_PRIV int sr_atof_ascii(const char *str, float *ret)
{