JZsdk_string.h 1.2 KB
/**
 ********************************************************************
 * @file   JZsdk_string.h
 *          用于文件系统操作
 *
 *********************************************************************
 */

/* Define to prevent recursive inclusion 避免重定义 -------------------------------------*/
#ifndef JZSDK_STRING_H
#define JZSDK_STRING_H

/* Includes ------------------------------------------------------------------*/
#include <stddef.h>
#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h"

#ifdef __cplusplus
extern "C" {
#endif

/* Exported constants --------------------------------------------------------*/
/* 常亮定义*/


/* Exported types ------------------------------------------------------------*/


/* Exported functions --------------------------------------------------------*/
int  JZsdk_String_str_to_int(const char *str);
void JZsdk_String_int_to_str(int n, char *str);
size_t JZsdk_String_longlong_to_str(char *s, long long value,int radix);
T_JZsdkReturnCode JZsdk_Array_isEmpty(unsigned char array[], int size);
T_JZsdkReturnCode JZsdk_replace_newlines_with_null_terminator(char* string) ;


#ifdef __cplusplus
}
#endif

#endif