apfs_fat32_string.h
来自「一个可以在开发板上运行的fat文件系统,是在windows平台下开发的,是学习文」· C头文件 代码 · 共 23 行
H
23 行
//-----------------------------------------------------------------------------
// This file is part of AP.FS
// AP.FS is a FAT32 file system face to the embedded system,It's target is to
// support the portable storage device such as SD Card,TF Card or USB Disc 's
// file system.
// please login www.another-prj.com to get more details.
// caiyuqing
// 2008-1-8
//-----------------------------------------------------------------------------
#ifndef _APFS_FAT32_STRING_H
#define _APFS_FAT32_STRING_H
#include "../typedef.h"
int apfs_path_to_levels(const char *path);
int apfs_get_sub_string(const char *path, int levelreq, char *output);
int apfs_split_path(const char *full_path, char *path, char *file_name);
int apfs_file_string_compare(const char* strA, const char* strB);
int apfs_get_extension(const char *str);
int apfs_string_cmpare_no_case(const char *s1, const char *s2, int n);
int apfs_trim_length(const char *str, int str_len);
int apfs_check_extension(const char* str);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?