Home
last modified time | relevance | path

Searched refs:is_end_with (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/src/others/file_explorer/
Dlv_file_explorer.c51 static bool is_end_with(const char * str1, const char * str2);
581 if((is_end_with(fn, ".png") == true) || (is_end_with(fn, ".PNG") == true) || \ in show_dir()
582 (is_end_with(fn, ".jpg") == true) || (is_end_with(fn, ".JPG") == true) || \ in show_dir()
583 (is_end_with(fn, ".bmp") == true) || (is_end_with(fn, ".BMP") == true) || \ in show_dir()
584 (is_end_with(fn, ".gif") == true) || (is_end_with(fn, ".GIF") == true)) { in show_dir()
588 else if((is_end_with(fn, ".mp3") == true) || (is_end_with(fn, ".MP3") == true) || \ in show_dir()
589 (is_end_with(fn, ".wav") == true) || (is_end_with(fn, ".WAV") == true)) { in show_dir()
593 else if((is_end_with(fn, ".mp4") == true) || (is_end_with(fn, ".MP4") == true)) { in show_dir()
597 else if((is_end_with(fn, ".") == true) || (is_end_with(fn, "..") == true)) { in show_dir()
708 static bool is_end_with(const char * str1, const char * str2) in is_end_with() function