Codebase list xd / 65cee53f-7641-4163-8041-a9049fda4223/main icmake / cuteoln
65cee53f-7641-4163-8041-a9049fda4223/main

Tree @65cee53f-7641-4163-8041-a9049fda4223/main (Download .tar.gz)

cuteoln @65cee53f-7641-4163-8041-a9049fda4223/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;
}