libs/libc/libc.csv: Add some missing C library functions.

This commit is contained in:
Pavel Pisa
2019-08-15 14:35:00 -06:00
committed by Gregory Nutt
parent 5a2d5fb7f9
commit c7a4720a51
+5
View File
@@ -42,10 +42,12 @@
"fputc","stdio.h","CONFIG_NFILE_STREAMS > 0","int","int c","FAR FILE *"
"fputs","stdio.h","CONFIG_NFILE_STREAMS > 0","int","FAR const char *","FAR FILE *"
"fread","stdio.h","CONFIG_NFILE_STREAMS > 0","size_t","FAR void *","size_t","size_t","FAR FILE *"
"free","stdlib.h","","void","FAR void *"
"fseek","stdio.h","CONFIG_NFILE_STREAMS > 0","int","FAR FILE *","long int","int"
"fsetpos","stdio.h","CONFIG_NFILE_STREAMS > 0","int","FAR FILE *","FAR fpos_t *"
"ftell","stdio.h","CONFIG_NFILE_STREAMS > 0","long","FAR FILE *"
"fwrite","stdio.h","CONFIG_NFILE_STREAMS > 0","size_t","FAR const void *","size_t","size_t","FAR FILE *"
"get_errno_ptr","errno.h","defined(CONFIG_BUILD_FLAT)","FAR int *"
"getcwd","unistd.h","!defined(CONFIG_DISABLE_ENVIRON)","FAR char","FAR char *","size_t"
"gethostname","unistd.h","","int","FAR char*","size_t"
"getopt","unistd.h","","int","int","FAR char *const[]","FAR const char *"
@@ -79,6 +81,7 @@
"lib_dumpbuffer","debug.h","","void","FAR const char *","FAR const uint8_t *","unsigned int"
"lio_listio","aio.h","defined(CONFIG_FS_AIO)","int","int","FAR struct aiocb *const []|FAR struct aiocb *const *","int","FAR struct sigevent *"
"llabs","stdlib.h","defined(CONFIG_HAVE_LONG_LONG)","long long int","long long int"
"malloc","stdlib.h","","FAR void *","size_t"
"match","nuttx/lib/regex.h","","int","FAR const char *","FAR const char *"
"mbrtowc","wchar.h","defined(CONFIG_LIBC_WCHAR)","size_t","wchar_t *","FAR const char *","size_t","mbstate_t *"
"mbsnrtowcs","wchar.h","defined(CONFIG_LIBC_WCHAR)","size_t","FAR wchar_t *","FAR const char **","size_t","size_t","mbstate_t *"
@@ -117,6 +120,7 @@
"pthread_condattr_init","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_condattr_t *"
"pthread_cond_destroy","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_cond_t*"
"pthread_cond_init","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_cond_t*","FAR const pthread_condattr_t*"
"pthread_mutex_lock","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_mutex_t*"
"pthread_mutexattr_destroy","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_mutexattr_t *"
"pthread_mutexattr_getpshared","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_mutexattr_t *","FAR int *"
"pthread_mutexattr_gettype","pthread.h","!defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_PTHREAD_MUTEX_TYPES)","int","FAR const pthread_mutexattr_t *","int *"
@@ -129,6 +133,7 @@
"qsort","stdlib.h","","void","void *","size_t","size_t","int(*)(const void *","FAR const void *)"
"rand","stdlib.h","","int"
"readdir_r","dirent.h","","int","FAR DIR *","FAR struct dirent *","FAR struct dirent **"
"realloc","stdlib.h","","FAR void *","FAR void *","size_t"
"sched_get_priority_max","sched.h","","int","int"
"sched_get_priority_min","sched.h","","int","int"
"sem_getvalue","semaphore.h","","int","FAR sem_t *","FAR int *"
1 _inet_ntoa arpa/inet.h defined(CONFIG_NET_IPv4) && !defined(CONFIG_CAN_PASS_STRUCTS) FAR char in_addr_t
42 fputc stdio.h CONFIG_NFILE_STREAMS > 0 int int c
43 fputs stdio.h CONFIG_NFILE_STREAMS > 0 int FAR const char *
44 fread stdio.h CONFIG_NFILE_STREAMS > 0 size_t FAR void *
45 free stdlib.h void FAR void *
46 fseek stdio.h CONFIG_NFILE_STREAMS > 0 int FAR FILE *
47 fsetpos stdio.h CONFIG_NFILE_STREAMS > 0 int FAR FILE *
48 ftell stdio.h CONFIG_NFILE_STREAMS > 0 long FAR FILE *
49 fwrite stdio.h CONFIG_NFILE_STREAMS > 0 size_t FAR const void *
50 get_errno_ptr errno.h defined(CONFIG_BUILD_FLAT) FAR int *
51 getcwd unistd.h !defined(CONFIG_DISABLE_ENVIRON) FAR char FAR char *
52 gethostname unistd.h int FAR char*
53 getopt unistd.h int int
81 lib_dumpbuffer debug.h void FAR const char *
82 lio_listio aio.h defined(CONFIG_FS_AIO) int int
83 llabs stdlib.h defined(CONFIG_HAVE_LONG_LONG) long long int long long int
84 malloc stdlib.h FAR void * size_t
85 match nuttx/lib/regex.h int FAR const char *
86 mbrtowc wchar.h defined(CONFIG_LIBC_WCHAR) size_t wchar_t *
87 mbsnrtowcs wchar.h defined(CONFIG_LIBC_WCHAR) size_t FAR wchar_t *
120 pthread_condattr_init pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_condattr_t *
121 pthread_cond_destroy pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_cond_t*
122 pthread_cond_init pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_cond_t*
123 pthread_mutex_lock pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_mutex_t*
124 pthread_mutexattr_destroy pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_mutexattr_t *
125 pthread_mutexattr_getpshared pthread.h !defined(CONFIG_DISABLE_PTHREAD) int FAR pthread_mutexattr_t *
126 pthread_mutexattr_gettype pthread.h !defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_PTHREAD_MUTEX_TYPES) int FAR const pthread_mutexattr_t *
133 qsort stdlib.h void void *
134 rand stdlib.h int
135 readdir_r dirent.h int FAR DIR *
136 realloc stdlib.h FAR void * FAR void *
137 sched_get_priority_max sched.h int int
138 sched_get_priority_min sched.h int int
139 sem_getvalue semaphore.h int FAR sem_t *