incubator-nuttx/libc/stdio
Gregory Nutt fce87336a4 Add an option to disable support for long long formats in lib_vsprintf. From Alan Carvalho de Assis 2015-05-30 10:00:54 -06:00
..
Make.defs Add tmpnam() and tempnam() 2014-11-05 10:43:17 -06:00
lib_asprintf.c
lib_avsprintf.c avsprintf(): Fix a bug in usage of va_list on x86. On x86, va_list is a pointer to a single copy on the stack. avsprintf() calls lib_vsprintf() twice and so traverses the va_list twice using va_start. va_start modifies that single copy on the stack so that the second call to lib_vsprintf() fails. This appears to be an issue with x86 only so far 2014-12-08 10:40:06 -06:00
lib_clearerr.c
lib_dprintf.c
lib_dtoa.c
lib_fclose.c
lib_feof.c
lib_ferror.c
lib_fflush.c
lib_fgetc.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fgetpos.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fgets.c
lib_fileno.c
lib_fopen.c
lib_fprintf.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fputc.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fputs.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fread.c
lib_fseek.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_fsetpos.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_ftell.c Fix ftell() bug: It was not accounting for data buffered in memory. From Macs N 2014-03-31 09:47:28 -06:00
lib_fwrite.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_gets.c
lib_gets_s.c
lib_libdtoa.c Change to lib_dtoa() to fix prescision error from trailing zeroes 2014-09-26 05:49:50 -06:00
lib_libfflush.c
lib_libfgets.c Make sure that there is one space after for 2014-04-12 13:28:22 -06:00
lib_libflushall.c
lib_libfread.c
lib_libfwrite.c
lib_libnoflush.c Implement setlogmask(); move some syslog logic from libc/syslog to fs/syslog 2014-10-08 19:08:26 -06:00
lib_libsnoflush.c Add support for seekable memory streams 2014-06-14 15:35:18 -06:00
lib_libsprintf.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_libvsprintf.c Add an option to disable support for long long formats in lib_vsprintf. From Alan Carvalho de Assis 2015-05-30 10:00:54 -06:00
lib_lowinstream.c More fixes to problems noted by cppcheck. Some are kind of risky; some are real bugs. 2014-11-25 13:46:14 -06:00
lib_lowoutstream.c
lib_meminstream.c Add support for seekable memory streams 2014-06-14 15:35:18 -06:00
lib_memoutstream.c Add support for seekable memory streams 2014-06-14 15:35:18 -06:00
lib_memsistream.c Add support for seekable memory streams 2014-06-14 15:35:18 -06:00
lib_memsostream.c Add support for seekable memory streams 2014-06-14 15:35:18 -06:00
lib_nullinstream.c
lib_nulloutstream.c
lib_perror.c More trailing whilespace removal 2014-04-13 14:32:20 -06:00
lib_printf.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_puts.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_rawinstream.c Add support for seekable raw streams 2014-06-14 15:46:59 -06:00
lib_rawoutstream.c Add support for seekable raw streams 2014-06-14 15:46:59 -06:00
lib_rawsistream.c Add support for seekable raw streams 2014-06-14 15:46:59 -06:00
lib_rawsostream.c Mostly cosmetic changes 2014-09-04 10:28:38 -06:00
lib_rdflush.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_snprintf.c snprintf(): If size is zero, then snprintf() should return the size of the required buffer without writing anyting. From Sami Pelkonen 2014-05-30 08:53:43 -06:00
lib_sprintf.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_sscanf.c sscanf should also support %F 2014-12-12 07:54:37 -06:00
lib_stdinstream.c Add seekable standard streams 2014-06-14 16:19:42 -06:00
lib_stdoutstream.c Add seekable standard streams 2014-06-14 16:19:42 -06:00
lib_stdsistream.c Add seekable standard streams 2014-06-14 16:19:42 -06:00
lib_stdsostream.c Add seekable standard streams 2014-06-14 16:19:42 -06:00
lib_tempnam.c Add tmpnam() and tempnam() 2014-11-05 10:44:16 -06:00
lib_tmpnam.c Add tmpnam() and tempnam() 2014-11-05 10:44:16 -06:00
lib_ungetc.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_vdprintf.c
lib_vfprintf.c
lib_vprintf.c Make some file section headers more consistent with standard 2015-04-08 07:32:08 -06:00
lib_vsnprintf.c
lib_vsprintf.c
lib_wrflush.c
lib_zeroinstream.c