libc.obj:

- added strtod();
 - added "+" to fopen mode; 

git-svn-id: svn://kolibrios.org@9230 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat
2021-11-01 14:46:28 +00:00
parent 5ab7151d7d
commit bd8a5b6e8e
9 changed files with 144 additions and 34 deletions

View File

@@ -47,9 +47,10 @@ extern void _FUNC(debug_printf)(const char* format, ...);
typedef size_t fpos_t;
#define _FILEMODE_R 1 << 0 // Read
#define _FILEMODE_W 1 << 1 // Write
#define _FILEMODE_A 1 << 2 // Append
#define _FILEMODE_R 1 << 0 // Read
#define _FILEMODE_W 1 << 1 // Write
#define _FILEMODE_A 1 << 2 // Append
#define _FILEMODE_PLUS 1 << 3 // Plus
typedef struct FILE_s {
char *name;