代码拉取完成,页面将自动刷新
/***************************************************************
*Copyright(c) 2020思特诺(Stduino)All right reserved.
*
*This library is open source and free for individual users.
*
*For commercial use, please contact service001@stduino.com.
***************************************************************/
#ifndef StduinoStringFuction_h
#define StduinoStringFuction_h
#ifdef __cplusplus
extern "C" {
#endif
#include "StduinoMath.h"
#include "StduinoMemory.h"
#define HEX (16)
#define DEC (10)
#define OCT (8)
#define BIN (2)
char *dtostrf(float val, signed char width, unsigned char prec, char *sout);
int _strlen(const char *s);
char *_strcpy(char *dest, const char *src);
int _strcmp(const char *str1, const char *str2);
int _strncmp(const char *str1, const char *str2, unsigned int n);
char *_strncpy(char *dest, const char *src, unsigned int n);
const char *_strchr(const char *str, char c);
char* _strstr(char* src, const char* sub);
char *_strrchr(const char * str,int ch);
int _tolower (int c);
int _toupper(int c);
int _isspace(char c);
long _atol(char *s);
double _atof(const char *str);
char *_utoa (unsigned int val, char *sout, int radix);
char *_ltoa (long val, char *sout, int radix);
char *_itoa (int val, char *sout, int radix);
char *_ultoa (unsigned long val, char *sout, int radix);
#ifdef __cplusplus
}
#endif
#endif
/***************************************************************
*Copyright(c) 2020思特诺(Stduino)All right reserved.
*
*This library is open source and free for individual users.
*
*For commercial use, please contact service001@stduino.com.
***************************************************************/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。