Ignore:
Timestamp:
May 29, 2018, 9:27:23 AM (6 years ago)
Author:
alain
Message:

Restructure the mini_libc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libs/mini-libc/stdio.h

    r444 r445  
    11/*
    2  * stdio.h - User side syscalls definition.
     2 * stdio.h - User level <stdio> library definition.
    33 *
    4  * Author     Alain Greiner (2016,2017)
     4 * Author     Alain Greiner (2016,2017,2018)
    55 *
    66 * Copyright (c) UPMC Sorbonne Universites
     
    2525#define _STDIO_H_
    2626
    27 #include <almos-mkh/stdio.h>
     27/*********************************************************************************************
     28 * This file defines the user level, TXT related <stdio> library.
     29 * These functions call the read() and write() functions defined in the <unistd> library
     30 * to access the TXT terminal.
     31 ********************************************************************************************/
    2832
    29 #define  NULL  (void *)0
     33
    3034/*********************************************************************************************
    3135 * This function writes a formated string to the standard "stdout" stream.
     
    5458 * it cheks that the formated string fit in the buffer length.
    5559 *********************************************************************************************
    56  * @ string    :  pointer on target buffer.
     60 * @ string    : pointer on target buffer.
    5761 * @ length    : max bumber of characters in target buffer.
    5862 * @ format    : formated string.
Note: See TracChangeset for help on using the changeset viewer.