libmisc: Doxygen Enhancement Task #2

http://www.google-melange.com/gci/task/view/google/gci2012/7959228
This commit is contained in:
Mathew Kallada
2012-12-19 09:51:38 -05:00
committed by Gedare Bloom
parent 9889d51724
commit 148e3de629
10 changed files with 80 additions and 9 deletions

View File

@@ -15,6 +15,12 @@
#ifndef _RTEMS_STRINGTO_H
#define _RTEMS_STRINGTO_H
/**
* @defgroup libmisc_conv_help Conversion Helpers
*
* @ingroup libmisc
*/
/**@{*/
#include <rtems.h>
@@ -248,3 +254,4 @@ rtems_status_code rtems_string_to_long_double(
);
#endif
/**@}*/

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Double (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Int (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Long (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Long Long (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Pointer (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Unsigned Int (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to Unsigned Long Long (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).

View File

@@ -1,8 +1,17 @@
/* FIXME:
/**
* @file
*
* @brief Untar an Image
* @ingroup libmisc_untar_img Untar Image
*
* FIXME:
* 1. Symbolic links are not created.
* 2. Untar_FromMemory uses FILE *fp.
* 3. How to determine end of archive?
*
*/
/*
* Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
*
* The license and distribution terms for this file may be

View File

@@ -18,6 +18,12 @@
#include <stddef.h>
#include <tar.h>
/**
* @defgroup libmisc_untar_img Untar Image
*
* @ingroup libmisc
*/
/**@{*/
#ifdef __cplusplus
extern "C" {
#endif
@@ -49,5 +55,5 @@ _rtems_tar_header_checksum(const char *bufr);
#ifdef __cplusplus
}
#endif
/**@}*/
#endif /* _RTEMS_UNTAR_H */