2012-11-10 16:06:01 +00:00
|
|
|
/****************************************************************************
|
2018-05-29 13:21:26 -06:00
|
|
|
* libs/libc/libc.h
|
2012-11-10 16:06:01 +00:00
|
|
|
*
|
2020-08-04 14:08:04 -06:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2012-11-10 16:06:01 +00:00
|
|
|
*
|
2020-08-04 14:08:04 -06:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 16:06:01 +00:00
|
|
|
*
|
2020-08-04 14:08:04 -06:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2012-11-10 16:06:01 +00:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-15 04:44:35 +02:00
|
|
|
#ifndef __LIBS_LIBC_LIBC_H
|
|
|
|
#define __LIBS_LIBC_LIBC_H
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
2020-05-01 02:43:08 +08:00
|
|
|
#include <stdlib.h>
|
2012-11-10 16:06:01 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
|
2020-08-13 18:17:29 +08:00
|
|
|
#include <nuttx/lib/lib.h>
|
2012-11-10 16:06:01 +00:00
|
|
|
#include <nuttx/streams.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-10-04 14:22:00 -06:00
|
|
|
* Pre-processor Definitions
|
2012-11-10 16:06:01 +00:00
|
|
|
****************************************************************************/
|
2017-02-09 16:17:54 -06:00
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
/* This configuration directory is used in environment variable processing
|
|
|
|
* when we need to reference the user's home directory. There are no user
|
|
|
|
* directories in NuttX so, by default, this always refers to the root
|
|
|
|
* directory.
|
|
|
|
*/
|
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
#ifndef CONFIG_LIBC_HOMEDIR
|
|
|
|
# define CONFIG_LIBC_HOMEDIR "/"
|
2012-11-10 16:06:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LIB_BUFLEN_UNKNOWN INT_MAX
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-10-04 14:22:00 -06:00
|
|
|
* Public Data
|
2012-11-10 16:06:01 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2013-03-09 21:12:20 +00:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Defined in lib_streamsem.c */
|
|
|
|
|
2020-08-13 18:17:29 +08:00
|
|
|
#ifdef CONFIG_FILE_STREAM
|
2021-11-01 12:00:39 +08:00
|
|
|
void lib_stream_semtake(FAR struct streamlist *list);
|
|
|
|
void lib_stream_semgive(FAR struct streamlist *list);
|
2012-11-10 16:06:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Defined in lib_dtoa.c */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIBC_FLOATINGPOINT
|
2020-08-04 14:08:04 -06:00
|
|
|
FAR char *__dtoa(double d, int mode, int ndigits, FAR int *decpt,
|
|
|
|
FAR int *sign, FAR char **rve);
|
2012-11-10 16:06:01 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-22 08:38:55 -06:00
|
|
|
/* Defined in lib_fopen.c */
|
|
|
|
|
|
|
|
int lib_mode2oflags(FAR const char *mode);
|
|
|
|
|
|
|
|
/* Defined in lib_libfwrite.c */
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
ssize_t lib_fwrite(FAR const void *ptr, size_t count, FAR FILE *stream);
|
|
|
|
|
|
|
|
/* Defined in lib_libfread.c */
|
|
|
|
|
|
|
|
ssize_t lib_fread(FAR void *ptr, size_t count, FAR FILE *stream);
|
|
|
|
|
2014-01-08 10:47:34 -06:00
|
|
|
/* Defined in lib_libfgets.c */
|
|
|
|
|
2014-01-08 11:24:28 -06:00
|
|
|
FAR char *lib_fgets(FAR char *buf, size_t buflen, FILE *stream,
|
2014-01-08 10:47:34 -06:00
|
|
|
bool keepnl, bool consume);
|
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
/* Defined in lib_libfflush.c */
|
|
|
|
|
|
|
|
ssize_t lib_fflush(FAR FILE *stream, bool bforce);
|
|
|
|
|
|
|
|
/* Defined in lib_rdflush.c */
|
|
|
|
|
|
|
|
int lib_rdflush(FAR FILE *stream);
|
|
|
|
|
|
|
|
/* Defined in lib_wrflush.c */
|
|
|
|
|
|
|
|
int lib_wrflush(FAR FILE *stream);
|
|
|
|
|
|
|
|
/* Defined in lib_libgetbase.c */
|
|
|
|
|
2020-08-04 14:08:04 -06:00
|
|
|
int lib_getbase(FAR const char *nptr, FAR const char **endptr);
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
/* Defined in lib_skipspace.c */
|
|
|
|
|
2020-08-04 14:08:04 -06:00
|
|
|
void lib_skipspace(FAR const char **pptr);
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
/* Defined in lib_isbasedigit.c */
|
|
|
|
|
2020-08-04 14:08:04 -06:00
|
|
|
bool lib_isbasedigit(int ch, int base, FAR int *value);
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
/* Defined in lib_checkbase.c */
|
|
|
|
|
2020-08-04 14:08:04 -06:00
|
|
|
int lib_checkbase(int base, FAR const char **pptr);
|
2012-11-10 16:06:01 +00:00
|
|
|
|
|
|
|
/* Defined in lib_expi.c */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIBM
|
2016-07-11 07:02:50 -06:00
|
|
|
float lib_expif(size_t n);
|
2012-11-10 16:06:01 +00:00
|
|
|
double lib_expi(size_t n);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Defined in lib_libsqrtapprox.c */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIBM
|
|
|
|
float lib_sqrtapprox(float x);
|
|
|
|
#endif
|
|
|
|
|
2015-07-08 13:40:52 -06:00
|
|
|
/* Defined in lib_parsehostfile.c */
|
|
|
|
|
2015-07-10 12:11:40 -06:00
|
|
|
#ifdef CONFIG_NETDB_HOSTFILE
|
2015-07-10 13:30:09 -06:00
|
|
|
struct hostent;
|
2015-07-08 13:40:52 -06:00
|
|
|
ssize_t lib_parse_hostfile(FAR FILE *stream, FAR struct hostent *host,
|
|
|
|
FAR char *buf, size_t buflen);
|
|
|
|
#endif
|
|
|
|
|
2020-07-28 16:05:02 +08:00
|
|
|
#ifndef CONFIG_DISABLE_ENVIRON
|
|
|
|
int lib_restoredir(void);
|
|
|
|
#endif
|
|
|
|
|
2022-05-03 16:02:30 +08:00
|
|
|
/* Defined in lib_cxx_initialize.c */
|
|
|
|
|
|
|
|
void lib_cxx_initialize(void);
|
|
|
|
|
2013-03-09 21:12:20 +00:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-15 04:44:35 +02:00
|
|
|
#endif /* __LIBS_LIBC_LIBC_H */
|