Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これらの変数にはすでに何かが渡されています:
char *filename; int filename_len;
filename「.abc」で終わるかどうかを確認するにはどうすればよいですか?
filename
if (filename_len >= 4 && strcmp(filename + filename_len - 4, ".abc") == 0) { // match }