Codebase list xd / scrub-obsolete/main icmake / cuteoln
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

cuteoln @scrub-obsolete/mainraw · 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;
}