forked from Imagelibrary/rtems
libmisc: Doxygen Enhancement Task #2
http://www.google-melange.com/gci/task/view/google/gci2012/7959228
This commit is contained in:
committed by
Gedare Bloom
parent
9889d51724
commit
148e3de629
@@ -15,6 +15,12 @@
|
|||||||
|
|
||||||
#ifndef _RTEMS_STRINGTO_H
|
#ifndef _RTEMS_STRINGTO_H
|
||||||
#define _RTEMS_STRINGTO_H
|
#define _RTEMS_STRINGTO_H
|
||||||
|
/**
|
||||||
|
* @defgroup libmisc_conv_help Conversion Helpers
|
||||||
|
*
|
||||||
|
* @ingroup libmisc
|
||||||
|
*/
|
||||||
|
/**@{*/
|
||||||
|
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
|
|
||||||
@@ -248,3 +254,4 @@ rtems_status_code rtems_string_to_long_double(
|
|||||||
);
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
/**@}*/
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Double (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Int (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Long (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Long Long (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Pointer (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Unsigned Int (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Convert String to Unsigned Long Long (with validation)
|
||||||
|
* @ingroup libmisc_conv_help Conversion Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT (c) 2009.
|
* COPYRIGHT (c) 2009.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
|||||||
@@ -1,8 +1,17 @@
|
|||||||
/* FIXME:
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @brief Untar an Image
|
||||||
|
* @ingroup libmisc_untar_img Untar Image
|
||||||
|
*
|
||||||
|
* FIXME:
|
||||||
* 1. Symbolic links are not created.
|
* 1. Symbolic links are not created.
|
||||||
* 2. Untar_FromMemory uses FILE *fp.
|
* 2. Untar_FromMemory uses FILE *fp.
|
||||||
* 3. How to determine end of archive?
|
* 3. How to determine end of archive?
|
||||||
*
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
* Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
|
* Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
|
|||||||
@@ -18,6 +18,12 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <tar.h>
|
#include <tar.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup libmisc_untar_img Untar Image
|
||||||
|
*
|
||||||
|
* @ingroup libmisc
|
||||||
|
*/
|
||||||
|
/**@{*/
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@@ -49,5 +55,5 @@ _rtems_tar_header_checksum(const char *bufr);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
/**@}*/
|
||||||
#endif /* _RTEMS_UNTAR_H */
|
#endif /* _RTEMS_UNTAR_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user