Changes between Version 7 and Version 8 of library_stdlib


Ignore:
Timestamp:
Jan 21, 2016, 6:55:06 PM (8 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdlib

    v7 v8  
    2929This function copies the source string to the dest string.It returns a pointer on the dest string.
    3030
     31 == unsigned int '''snprintf'''( char* string , unsigned int maxlen , char* format , va_list* args ) ==
     32This function can be directly used by an application to build a formated string.
     33It is also used the ''giet_tty_printf()'' and ''giet_fat_printf()'' system calls.
     34It analyse the <format> and <args> arguments and returns a byte stream
     35in the <stream> buffer. The TO_STREAM macro checks buffer overflow.
     36It returns number of written bytes in case of success.
     37It returns 0xFFFFFFFF in case of error (illegal format, or buffer overflow).
    3138