Codebase list xd / upstream/3.25.00 icmake / cuteoln
upstream/3.25.00

Tree @upstream/3.25.00 (Download .tar.gz)

cuteoln @upstream/3.25.00raw · history · blame

1
2
3
4
5
6
7
8
9
string cutEoln(string text)
{
    int len;

    len = strlen(text) - 1;
    if (text[len] == "\n")
        text = substr(text, 0, len);
    return text;
}