📄 apfs_fat32_string.h
字号:
//-----------------------------------------------------------------------------
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -