Thông tin

Tác giả Mathieu Xhonneux & Cyril Pletinckx
Hạn chót Không có hạn chót
Giới hạn nộp bài Không có giới hạn
Các tag chuyên mục s2, level2, category_string

Tags

Đăng nhập

[S2] strcasecmp

La libraire string(3) implémente un grand nombre de fonctions de manipulation des strings qui vous seront utiles lors de différents projets de programmation. Pour cette tâche, nous vous demandons de réimplémenter la fonction strcasecmp(3). N'hésitez pas à consulter la documentation.


Write the body of the function strcasecmp which returns an integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match, or be greater than s2, ignoring the cases of the characters. You don't have access to existing functions so you have to use this table.

int strcasecmp(const char *s1, const char *s2) {