代码拉取完成,页面将自动刷新
/**********************************************************************************************************
*@fileName: libc_string.c
*@platform: stm32l4xx.h + mdk5.26.2.0
*@version: v1.0.0
*@describe: the lib of string function interface
*@note:
**********************************************************************************************************
version date Author modification
----------------------------------------------------------------------------------------------------------
v1.0.0 190606 Etcfly Create file
**********************************************************************************************************/
#ifndef _LIBC_STRING_H
#define _LIBC_STRING_H
#ifdef _cplusplus
extern "C" {
#endif
/**********************EXPORT FUCTION**************************/
//mem
void *libc_memcpy(void *dst, const void *src, unsigned int count);
void *libc_memmove(void *dest, const void *src, unsigned int n);
int libc_memcmp(const void *cs, const void *ct, unsigned int count);
//string
unsigned int sys_strlen(const char *str);
char * libc_strcpy(char *dst, const char *src);
char *libc_strncpy(char *dst, const char *src, unsigned int n);
int libc_strcmp(const char *src1, const char *src2);
int libc_strncmp(const char *cs, const char *ct, unsigned int count);unsigned int libc_strlen(const char *str);
unsigned int libc_strlen(const char *str);
char *libc_strcat(char *dest, const char *src);
char *libc_strstr(const char *s1, const char *s2);
#ifdef _cplusplus
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。