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