numpy  2.0.0
src/multiarray/numpyos.h
Go to the documentation of this file.
00001 #ifndef _NPY_NUMPYOS_H_
00002 #define _NPY_NUMPYOS_H_
00003 
00004 NPY_NO_EXPORT char*
00005 NumPyOS_ascii_formatd(char *buffer, size_t buf_size,
00006                       const char *format,
00007                       double val, int decimal);
00008 
00009 NPY_NO_EXPORT char*
00010 NumPyOS_ascii_formatf(char *buffer, size_t buf_size,
00011                       const char *format,
00012                       float val, int decimal);
00013 
00014 NPY_NO_EXPORT char*
00015 NumPyOS_ascii_formatl(char *buffer, size_t buf_size,
00016                       const char *format,
00017                       long double val, int decimal);
00018 
00019 NPY_NO_EXPORT double
00020 NumPyOS_ascii_strtod(const char *s, char** endptr);
00021 
00022 NPY_NO_EXPORT int
00023 NumPyOS_ascii_ftolf(FILE *fp, double *value);
00024 
00025 NPY_NO_EXPORT int
00026 NumPyOS_ascii_isspace(char c);
00027 
00028 #endif