Changeset b2951e2 in mainline for libc/generic/io


Ignore:
Timestamp:
2006-06-07T19:27:43Z (20 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b3d1e11
Parents:
f951077
Message:

Doxygen comments.

Location:
libc/generic/io
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/io/io.c

    rf951077 rb2951e2  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
    2733 */
    2834
     
    105111
    106112
     113
     114
     115 /** @}
     116 */
     117 
     118 
  • libc/generic/io/printf.c

    rf951077 rb2951e2  
    2727 */
    2828
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <io/printf_core.h>
    3036#include <stdio.h>
     
    5157
    5258
     59
     60
     61 /** @}
     62 */
     63 
     64 
  • libc/generic/io/printf_core.c

    rf951077 rb2951e2  
    2828 */
    2929
     30 /** @addtogroup libc
     31 * @{
     32 */
    3033/**
    31  * @file        print.c
     34 * @file
    3235 * @brief       Printing functions.
    3336 */
     
    413416 *
    414417 *      - P, p  Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix
    415  *      (as with \%#X or \%#x for 32bit or \%#X / \%#x for 64bit long pointers).
     418 *      (as with '\%#X' or '\%#x' for 32bit or '\%#X' or '\%#x' for 64bit long pointers).
    416419 *
    417420 *      - b     Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.)
     
    686689}
    687690
     691
     692
     693 /** @}
     694 */
     695 
     696 
  • libc/generic/io/snprintf.c

    rf951077 rb2951e2  
    2727 */
    2828
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <stdarg.h>
    3036#include <stdio.h>
     
    4955        return ret;
    5056}
     57
     58
     59 /** @}
     60 */
     61 
     62 
  • libc/generic/io/sprintf.c

    rf951077 rb2951e2  
    2727 */
    2828
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <stdarg.h>
    3036#include <stdio.h>
     
    4854        return ret;
    4955}
     56
     57
     58 /** @}
     59 */
     60 
     61 
  • libc/generic/io/stream.c

    rf951077 rb2951e2  
    2626 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2727 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28 */
     29
     30 /** @addtogroup libc
     31 * @{
     32 */
     33/** @file
    2834 */
    2935
     
    182188        return streams[fd].phone;
    183189}
     190
     191
     192 /** @}
     193 */
     194 
     195 
  • libc/generic/io/vprintf.c

    rf951077 rb2951e2  
    2727 */
    2828
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <stdarg.h>
    3036#include <stdio.h>
     
    5258
    5359
     60
     61
     62 /** @}
     63 */
     64 
     65 
  • libc/generic/io/vsnprintf.c

    rf951077 rb2951e2  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
    2733 */
    2834
     
    104110
    105111
     112
     113
     114 /** @}
     115 */
     116 
     117 
  • libc/generic/io/vsprintf.c

    rf951077 rb2951e2  
    2727 */
    2828
     29 /** @addtogroup libc
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <stdarg.h>
    3036#include <stdio.h>
     
    4248}
    4349
     50
     51
     52 /** @}
     53 */
     54 
     55 
Note: See TracChangeset for help on using the changeset viewer.