To Forum της Ελληνικής Κοινότητας Ubuntu-grhttps://forum.ubuntu-gr.org/
https://forum.ubuntu-gr.org/viewtopic.php?p=205633#p205633
int s_compare( const char *s1, const char *s2 ){ int i1 = 0; while ( s1[i1] == s2[i1] ) if ( !s1[i1++] ) return 0; return (int)(s1[i1] - s2[i1]);}