mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 11:56:10 +08:00
syscall/libc: add more syscall/libc symbols into csv file
Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
committed by
Masayuki Ishikawa
parent
478f2f3d5f
commit
3c58f5db2b
+55
-7
@@ -1,8 +1,10 @@
|
||||
"__assert","assert.h","","void","FAR const char *","int","FAR const char *"
|
||||
"__cxa_atexit","stdlib.h","","int","FAR CODE void (*)(FAR void *)|FAR void *","FAR void *","FAR void *"
|
||||
"__errno","errno.h","defined(CONFIG_BUILD_FLAT)","FAR int *"
|
||||
"__stack_chk_fail","ssp/ssp.h","defined(CONFIG_STACK_CANARIES)","void","void"
|
||||
"_alert","debug.h","!defined(CONFIG_CPP_HAVE_VARARGS) && defined(CONFIG_DEBUG_ERROR)","void","FAR const char *","..."
|
||||
"__assert","assert.h","","void","FAR const char *","int","FAR const char *"
|
||||
"_err","debug.h","!defined(CONFIG_CPP_HAVE_VARARGS) && defined(CONFIG_DEBUG_ERROR)","void","FAR const char *","..."
|
||||
"_exit","unistd.h","","void","int"
|
||||
"_info","debug.h","!defined(CONFIG_CPP_HAVE_VARARGS) && defined(CONFIG_DEBUG_INFO)","void","FAR const char *","..."
|
||||
"_warn","debug.h","!defined(CONFIG_CPP_HAVE_VARARGS) && defined(CONFIG_DEBUG_WARN)","void","FAR const char *","..."
|
||||
"abort","stdlib.h","","void"
|
||||
@@ -11,6 +13,7 @@
|
||||
"aio_return","aio.h","defined(CONFIG_FS_AIO)","ssize_t","FAR struct aiocb *"
|
||||
"aio_suspend","aio.h","defined(CONFIG_FS_AIO)","int","FAR const struct aiocb * const []|FAR const struct aiocb * const *","int","FAR const struct timespec *"
|
||||
"alarm","unistd.h","!defined(CONFIG_DISABLE_POSIX_TIMERS)","unsigned int","unsigned int"
|
||||
"alphasort","dirent.h","","int","FAR const struct dirent **","FAR const struct dirent **"
|
||||
"asprintf","stdio.h","","int","FAR char **","FAR const IPTR char *","..."
|
||||
"atof","stdlib.h","defined(CONFIG_HAVE_DOUBLE)","double","FAR const char *"
|
||||
"atoi","stdlib.h","","int","FAR const char *"
|
||||
@@ -23,18 +26,23 @@
|
||||
"b16sin","fixedmath.h","","b16_t","b16_t"
|
||||
"b16sqr","fixedmath.h","!defined(CONFIG_HAVE_LONG_LONG)","b16_t","b16_t"
|
||||
"basename","libgen.h","","FAR char *","FAR char *"
|
||||
"bind_textdomain_codeset","libintl.h","defined(CONFIG_LIBC_LOCALE)","FAR char *","FAR const char *","FAR const char *"
|
||||
"bindtextdomain","libintl.h","defined(CONFIG_LIBC_LOCALE)","FAR char *","FAR const char *","FAR const char *"
|
||||
"btowc","wchar.h","","wint_t","int"
|
||||
"calloc","stdlib.h","","FAR void *","size_t","size_t"
|
||||
"cfgetspeed","termios.h","","speed_t","FAR const struct termios *"
|
||||
"cfsetspeed","termios.h","","int","FAR struct termios *","speed_t"
|
||||
"chdir","unistd.h","!defined(CONFIG_DISABLE_ENVIRON)","int","FAR const char *"
|
||||
"clock","time.h","","clock_t"
|
||||
"closedir","dirent.h","","int","DIR *"
|
||||
"crc32","nuttx/crc32.h","","uint32_t","FAR const uint8_t *","size_t"
|
||||
"crc32part","nuttx/crc32.h","","uint32_t","FAR const uint8_t *","size_t","uint32_t"
|
||||
"ctime","time.h","","char *","const time_t *"
|
||||
"daemon","unistd.h","","int","int","int"
|
||||
"dgettext","libintl.h","defined(CONFIG_LIBC_LOCALE)","FAR char *","FAR const char *","FAR const char *"
|
||||
"dirname","libgen.h","","FAR char *","FAR char *"
|
||||
"dlclose","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","int","FAR void *"
|
||||
"dlerror","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","FAR char *","void"
|
||||
"dlerror","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","FAR char *"
|
||||
"dlopen","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","FAR void *","FAR const char *","int"
|
||||
"dlsym","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","FAR void *","FAR void *","FAR const char *"
|
||||
"dlsymtab","dlfcn.h","defined(CONFIG_LIBC_DLFCN)","int","FAR const struct symtab_s *","int"
|
||||
@@ -42,6 +50,8 @@
|
||||
"dq_remfirst","nuttx/queue.h","","FAR dq_entry_t *","FAR dq_queue_t *"
|
||||
"dq_remlast","nuttx/queue.h","","FAR dq_entry_t *","FAR dq_queue_t *"
|
||||
"ether_ntoa","netinet/ether.h","","FAR char *","FAR const struct ether_addr *"
|
||||
"execv","unistd.h","","int","FAR const char *","FAR char *const[]|FAR char *const *"
|
||||
"exit","stdlib.h","","noreturn","int"
|
||||
"fchdir","unistd.h","!defined(CONFIG_DISABLE_ENVIRON)","int","int"
|
||||
"fclose","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR FILE *"
|
||||
"fdopen","stdio.h","defined(CONFIG_FILE_STREAM)","FAR FILE *","int","FAR const char *"
|
||||
@@ -62,6 +72,7 @@
|
||||
"fread","stdio.h","defined(CONFIG_FILE_STREAM)","size_t","FAR void *","size_t","size_t","FAR FILE *"
|
||||
"free","stdlib.h","","void","FAR void *"
|
||||
"freeaddrinfo","netdb.h","defined(CONFIG_LIBC_NETDB)","void","FAR struct addrinfo *"
|
||||
"fscanf","stdio.h","","int","FAR FILE *","FAR const char *","..."
|
||||
"fseek","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR FILE *","long int","int"
|
||||
"fsetpos","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR FILE *","FAR fpos_t *"
|
||||
"fstatvfs","sys/statvfs.h","","int","int","FAR struct statvfs *"
|
||||
@@ -71,9 +82,10 @@
|
||||
"fwrite","stdio.h","defined(CONFIG_FILE_STREAM)","size_t","FAR const void *","size_t","size_t","FAR FILE *"
|
||||
"gai_strerror","netdb.h","defined(CONFIG_LIBC_NETDB)","FAR const char *","int"
|
||||
"getaddrinfo","netdb.h","defined(CONFIG_LIBC_NETDB)","int","FAR const char *","FAR const char *","FAR const struct addrinfo *","FAR struct addrinfo **"
|
||||
"getc","stdio.h","","int","FAR FILE *"
|
||||
"getcwd","unistd.h","!defined(CONFIG_DISABLE_ENVIRON)","FAR char *","FAR char *","size_t"
|
||||
"getegid","unistd.h","","gid_t","void"
|
||||
"geteuid","unistd.h","","uid_t","void"
|
||||
"getegid","unistd.h","","gid_t"
|
||||
"geteuid","unistd.h","","uid_t"
|
||||
"gethostbyname","netdb.h","defined(CONFIG_LIBC_NETDB)","FAR struct hostent *","FAR const char *"
|
||||
"gethostbyname2","netdb.h","defined(CONFIG_LIBC_NETDB)","FAR struct hostent *","FAR const char *","int"
|
||||
"gethostname","unistd.h","","int","FAR char *","size_t"
|
||||
@@ -84,12 +96,18 @@
|
||||
"getoptindp","unistd.h","","FAR int *"
|
||||
"getoptoptp","unistd.h","","FAR int *"
|
||||
"getpriority","sys/resource.h","","int","int","id_t"
|
||||
"getpwnam_r","pwd.h","","int","FAR const char *","FAR struct passwd *","FAR char *","size_t","FAR struct passwd **"
|
||||
"getpwuid_r","pwd.h","","int","uid_t","FAR struct passwd *","FAR char *","size_t","FAR struct passwd **"
|
||||
"gets","stdio.h","defined(CONFIG_FILE_STREAM)","FAR char *","FAR char *"
|
||||
"gettext","libintl.h","defined(CONFIG_LIBC_LOCALE)","FAR char *","FAR const char *"
|
||||
"gettimeofday","sys/time.h","","int","FAR struct timeval *","FAR struct timezone *"
|
||||
"gmtime","time.h","","FAR struct tm *","FAR const time_t *"
|
||||
"gmtime_r","time.h","","FAR struct tm *","FAR const time_t *","FAR struct tm *"
|
||||
"htonl","arpa/inet.h","","uint32_t","uint32_t"
|
||||
"htons","arpa/inet.h","","uint16_t","uint16_t"
|
||||
"iconv","iconv.h","defined(CONFIG_LIBC_LOCALE)","size_t","iconv_t","FAR char **","FAR size_t *","FAR char **","FAR size_t *"
|
||||
"iconv_close","iconv.h","defined(CONFIG_LIBC_LOCALE)","int","iconv_t"
|
||||
"iconv_open","iconv.h","defined(CONFIG_LIBC_LOCALE)","iconv_t","FAR const char *","FAR const char *"
|
||||
"imaxabs","inttypes.h","","intmax_t","intmax_t"
|
||||
"inet_addr","arpa/inet.h","","in_addr_t","FAR const char *"
|
||||
"inet_ntoa","arpa/inet.h","defined(CONFIG_NET_IPv4)","FAR char *","struct in_addr"
|
||||
@@ -98,6 +116,7 @@
|
||||
"isalnum","ctype.h","","int","int"
|
||||
"isalpha","ctype.h","","int","int"
|
||||
"isascii","ctype.h","","int","int"
|
||||
"isatty","unistd.h","","int","int"
|
||||
"isblank","ctype.h","","int","int"
|
||||
"iscntrl","ctype.h","","int","int"
|
||||
"isdigit","ctype.h","","int","int"
|
||||
@@ -123,9 +142,11 @@
|
||||
"isxdigit","ctype.h","","int","int"
|
||||
"labs","stdlib.h","","long int","long int"
|
||||
"lib_dumpbuffer","debug.h","","void","FAR const char *","FAR const uint8_t *","unsigned int"
|
||||
"lib_get_stream","nuttx/tls.h","","FAR struct file_struct *","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"
|
||||
"localtime","time.h","","struct tm *","const time_t *"
|
||||
"localtime_r","time.h","","FAR struct tm *","FAR const time_t *","FAR struct tm *"
|
||||
"mallinfo","malloc.h","","struct mallinfo","void"
|
||||
"malloc","stdlib.h","","FAR void *","size_t"
|
||||
"malloc_size","malloc.h","","size_t","FAR void *"
|
||||
@@ -150,8 +171,10 @@
|
||||
"nice","unistd.h","","int","int"
|
||||
"ntohl","arpa/inet.h","","uint32_t","uint32_t"
|
||||
"ntohs","arpa/inet.h","","uint16_t","uint16_t"
|
||||
"opendir","dirent.h","","FAR DIR *","FAR const char *"
|
||||
"perror","stdio.h","defined(CONFIG_FILE_STREAM)","void","FAR const char *"
|
||||
"posix_fallocate","fcntl.h","","int","off_t","off_t"
|
||||
"posix_fallocate","fcntl.h","","int","int","off_t","off_t"
|
||||
"posix_memalign","stdlib.h","","int","FAR void **","size_t","size_t"
|
||||
"preadv","sys/uio.h","","ssize_t","int","FAR const struct iovec *","int","off_t"
|
||||
"printf","stdio.h","","int","FAR const IPTR char *","..."
|
||||
"pthread_attr_destroy","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_attr_t *"
|
||||
@@ -176,8 +199,12 @@
|
||||
"pthread_cond_timedwait","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_cond_t *","FAR pthread_mutex_t *","FAR const struct timespec *"
|
||||
"pthread_condattr_destroy","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_condattr_t *"
|
||||
"pthread_condattr_init","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_condattr_t *"
|
||||
"pthread_condattr_setclock","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_condattr_t *","clockid_t"
|
||||
"pthread_create","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_t *","FAR const pthread_attr_t *","pthread_startroutine_t","pthread_addr_t"
|
||||
"pthread_getname_np","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","pthread_t","char *","size_t"
|
||||
"pthread_getspecific","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","FAR void *","pthread_key_t"
|
||||
"pthread_key_create","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_key_t *","FAR void (*) (void *)|FAR void *"
|
||||
"pthread_key_delete","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","pthread_key_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 *"
|
||||
@@ -186,16 +213,25 @@
|
||||
"pthread_mutexattr_setpshared","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_mutexattr_t *","int "
|
||||
"pthread_mutexattr_settype","pthread.h","!defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_PTHREAD_MUTEX_TYPES)","int","FAR pthread_mutexattr_t *","int"
|
||||
"pthread_once","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_once_t*","CODE void (*)(void)"
|
||||
"pthread_rwlock_destroy","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_rwlock_t *"
|
||||
"pthread_rwlock_init","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_rwlock_t *restrict","FAR const pthread_rwlockattr_t *"
|
||||
"pthread_rwlock_rdlock","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_rwlock_t *"
|
||||
"pthread_rwlock_unlock","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","FAR pthread_rwlock_t *"
|
||||
"pthread_setname_np","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","pthread_t","const char *"
|
||||
"pthread_setspecific","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","int","pthread_key_t","FAR const void *"
|
||||
"pthread_yield","pthread.h","!defined(CONFIG_DISABLE_PTHREAD)","void"
|
||||
"puts","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR const IPTR char *"
|
||||
"pwritev","sys/uio.h","","ssize_t","int","FAR const struct iovec *","int","off_t"
|
||||
"qsort","stdlib.h","","void","FAR void *","size_t","size_t","int(*)(FAR const void *","FAR const void *)"
|
||||
"raise","signal.h","","int","int"
|
||||
"rand","stdlib.h","","int"
|
||||
"readdir","dirent.h","","FAR struct dirent *","FAR DIR *"
|
||||
"readdir_r","dirent.h","","int","FAR DIR *","FAR struct dirent *","FAR struct dirent **"
|
||||
"readv","sys/uio.h","","ssize_t","int","FAR const struct iovec *","int"
|
||||
"realloc","stdlib.h","","FAR void *","FAR void *","size_t"
|
||||
"remove","stdio.h","","int","const char *"
|
||||
"rewind","stdio.h","defined(CONFIG_FILE_STREAM)","void","FAR FILE *"
|
||||
"scandir","dirent.h","","int","FAR const char *","FAR struct dirent ***","FAR int (*)(const struct dirent *)|FAR void *","FAR void *"
|
||||
"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 *"
|
||||
@@ -213,17 +249,21 @@
|
||||
"sleep","unistd.h","","unsigned int","unsigned int"
|
||||
"snprintf","stdio.h","","int","FAR char *","size_t","FAR const IPTR char *","..."
|
||||
"sprintf","stdio.h","","int","FAR char *","FAR const IPTR char *","..."
|
||||
"sprintf","stdio.h","","int","FAR char *","FAR const IPTR char *","..."
|
||||
"sq_addafter","nuttx/queue.h","","void","FAR sq_entry_t *","FAR sq_entry_t *","FAR sq_queue_t *"
|
||||
"sq_remafter","nuttx/queue.h","","FAR sq_entry_t","FAR sq_entry_t *","FAR sq_queue_t *"
|
||||
"sq_remfirst","nuttx/queue.h","","FAR sq_entry_t *","FAR sq_queue_t *"
|
||||
"sq_remlast","nuttx/queue.h","","FAR sq_entry_t *","FAR sq_queue_t *"
|
||||
"srand","stdlib.h","","void","unsigned int"
|
||||
"sscanf","stdio.h","","int","FAR const IPTR char *","FAR const char *","..."
|
||||
"sscanf","stdio.h","","int","FAR const char *","FAR const char *","..."
|
||||
"statvfs","sys/statvfs.h","","int","FAR const char *","FAR struct statvfs *"
|
||||
"stpcpy","string.h","","FAR char *","FAR char *","FAR const char *"
|
||||
"strcasecmp","strings.h","","int","FAR const char *","FAR const char *"
|
||||
"strcasestr","string.h","","FAR char *","FAR const char *","FAR const char *"
|
||||
"strcat","string.h","","FAR char *","FAR char *","FAR const char *"
|
||||
"strchr","string.h","","FAR char","FAR const char *","int"
|
||||
"strchrnul","string.h","","FAR char *","FAR const char *","int"
|
||||
"strcmp","string.h","","int","FAR const char *","FAR const char *"
|
||||
"strcoll","string.h","defined(CONFIG_LIBC_LOCALE)","int","FAR const char *","FAR const char *"
|
||||
"strcpy","string.h","","FAR char *","FAR char *","FAR const char *"
|
||||
@@ -241,31 +281,38 @@
|
||||
"strnlen","string.h","","size_t","FAR const char *","size_t"
|
||||
"strpbrk","string.h","","FAR char *","FAR const char *","FAR const char *"
|
||||
"strrchr","string.h","","FAR char *","FAR const char *","int"
|
||||
"strsep","string.h","","FAR char *","FAR char **","FAR const char *"
|
||||
"strspn","string.h","","size_t","FAR const char *","FAR const char *"
|
||||
"strstr","string.h","","FAR char","FAR const char *","FAR const char *"
|
||||
"strtod","stdlib.h","","double","FAR const char *","FAR char **"
|
||||
"strtod","stdlib.h","defined(CONFIG_HAVE_DOUBLE)","double","FAR const char *","FAR char **"
|
||||
"strtoimax","inttypes.h","","intmax_t","FAR const char *","FAR char **","int"
|
||||
"strtok","string.h","","FAR char *","FAR char *","FAR const char *"
|
||||
"strtok_r","string.h","","FAR char *","FAR char *","FAR const char *","FAR char **"
|
||||
"strtol","stdlib.h","","long","FAR const char *","FAR char **","int"
|
||||
"strtoll","stdlib.h","defined(CONFIG_HAVE_LONG_LONG)","long long","FAR const char *nptr","FAR char **endptr","int base"
|
||||
"strtoll","stdlib.h","defined(CONFIG_HAVE_LONG_LONG)","long long","FAR const char *","FAR char **","int"
|
||||
"strtoul","stdlib.h","","unsigned long","FAR const char *","FAR char **","int"
|
||||
"strtoull","stdlib.h","","unsigned long long int","FAR const char *","FAR char **","int"
|
||||
"strtoull","stdlib.h","defined(CONFIG_HAVE_LONG_LONG)","unsigned long long","FAR const char *","FAR char **","int"
|
||||
"strtoumax","inttypes.h","","uintmax_t","FAR const char *","FAR char **","int"
|
||||
"strxfrm","string.h","defined(CONFIG_LIBC_LOCALE)","size_t","FAR char *","FAR const char *","size_t"
|
||||
"swab","unistd.h","","void","FAR const void *","FAR void *","ssize_t"
|
||||
"swprintf","wchar.h","","int","FAR wchar_t *","size_t","FAR const wchar_t *","..."
|
||||
"sysconf","unistd.h","","long","int"
|
||||
"syslog","syslog.h","","void","int","FAR const IPTR char *","..."
|
||||
"task_tls_get_value","nuttx/tls.h","CONFIG_TLS_TASK_NELEM > 0","uintptr_t","int"
|
||||
"task_tls_set_value","nuttx/tls.h","CONFIG_TLS_TASK_NELEM > 0","int","int","uintptr_t"
|
||||
"tcflush","termios.h","","int","int","int"
|
||||
"tcgetattr","termios.h","","int","int","FAR struct termios *"
|
||||
"tcsetattr","termios.h","","int","int","int","FAR const struct termios *"
|
||||
"telldir","dirent.h","","off_t","FAR DIR *"
|
||||
"textdomain","libintl.h","defined(CONFIG_LIBC_LOCALE_GETTEXT)","FAR char *","FAR const char *"
|
||||
"time","time.h","","time_t","FAR time_t *"
|
||||
"tolower","ctype.h","","int","int"
|
||||
"toupper","ctype.h","","int","int"
|
||||
"towlower","wchar.h","","wint_t","wint_t"
|
||||
"towupper","wchar.h","","wint_t","wint_t"
|
||||
"truncate","unistd.h","!defined(CONFIG_DISABLE_MOUNTPOINT)","FAR const char *","off_t"
|
||||
"truncate","unistd.h","!defined(CONFIG_DISABLE_MOUNTPOINT)","int","FAR const char *","off_t"
|
||||
"ub16divub16","fixedmath.h","!defined(CONFIG_HAVE_LONG_LONG)","ub16_t","ub16_t","ub16_t"
|
||||
"ub16mulub16","fixedmath.h","!defined(CONFIG_HAVE_LONG_LONG)","ub16_t","ub16_t","ub16_t"
|
||||
"ub16sqr","fixedmath.h","!defined(CONFIG_HAVE_LONG_LONG)","ub16_t","ub16_t"
|
||||
@@ -273,6 +320,7 @@
|
||||
"ungetc","stdio.h","defined(CONFIG_FILE_STREAM)","int","int","FAR FILE *"
|
||||
"usleep","unistd.h","","int","useconds_t"
|
||||
"vasprintf","stdio.h","","int","FAR char **","FAR const IPTR char *","va_list"
|
||||
"versionsort","dirent.h","","int","FAR const struct dirent **","FAR const struct dirent **"
|
||||
"vfprintf","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR FILE *","FAR const IPTR char *","va_list"
|
||||
"vprintf","stdio.h","","int","FAR const IPTR char *","va_list"
|
||||
"vscanf","stdio.h","defined(CONFIG_FILE_STREAM)","int","FAR const IPTR char *","va_list"
|
||||
|
||||
|
Reference in New Issue
Block a user