compat BUGFIX getline() is closer to specification

The newline character is not deleted and the buffer containing the line
is not limited. The yangre using getline() has also been modified, it
can now also handle Carriage Return character.
diff --git a/compat/compat.c b/compat/compat.c
index 7bc86b3..24f235c 100644
--- a/compat/compat.c
+++ b/compat/compat.c
@@ -86,9 +86,9 @@
 ssize_t
 getline(char **lineptr, size_t *n, FILE *stream)
 {
-    static char line[256];
+    static char chunk[256];
     char *ptr;
-    ssize_t len;
+    ssize_t len, written;
 
     if (!lineptr || !n) {
         errno = EINVAL;
@@ -99,28 +99,31 @@
         return -1;
     }
 
-    if (!fgets(line, 256, stream)) {
-        return -1;
-    }
-
-    ptr = strchr(line, '\n');
-    if (ptr) {
-        *ptr = '\0';
-    }
-
-    len = strlen(line);
-
-    if (len + 1 < 256) {
-        ptr = realloc(*lineptr, 256);
-        if (!ptr) {
-            return -1;
+    *n = *lineptr ? *n : 0;
+    written = 0;
+    while (fgets(chunk, sizeof(chunk), stream)) {
+        len = strlen(chunk);
+        if (written + len > *n) {
+            ptr = realloc(*lineptr, *n + sizeof(chunk));
+            if (!ptr) {
+                return -1;
+            }
+            *lineptr = ptr;
+            *n = *n + sizeof(chunk);
         }
-        *lineptr = ptr;
-        *n = 256;
+        memcpy(*lineptr + written, &chunk, len);
+        written += len;
+        if ((*lineptr)[written - 1] == '\n') {
+            break;
+        }
+    }
+    if (written) {
+        (*lineptr)[written] = '\0';
+    } else {
+        written = -1;
     }
 
-    strcpy(*lineptr, line);
-    return len;
+    return written;
 }
 
 #endif
diff --git a/tools/re/main.c b/tools/re/main.c
index 80a3c5e..5d91f27 100644
--- a/tools/re/main.c
+++ b/tools/re/main.c
@@ -15,7 +15,6 @@
 
 #define _GNU_SOURCE /* asprintf, strdup */
 
-#include <assert.h>
 #include <errno.h>
 #include <getopt.h>
 #include <stdio.h>
@@ -139,14 +138,18 @@
     }
 
     while ((l = getline(&str, &len, *infile)) != -1) {
-        if (!blankline && (str[0] == '\n')) {
+        if (!blankline && ((str[0] == '\n') || ((str[0] == '\r') && (str[1] == '\n')))) {
             /* blank line */
             blankline = 1;
             continue;
         }
-        if ((str[0] != '\n') && (str[l - 1] == '\n')) {
+        if ((str[0] != '\n') && (str[0] != '\r') && (str[l - 1] == '\n')) {
             /* remove ending newline */
-            str[l - 1] = '\0';
+            if ((l > 1) && (str[l - 2] == '\r') && (str[l - 1] == '\n')) {
+                str[l - 2] = '\0';
+            } else {
+                str[l - 1] = '\0';
+            }
         }
         if (blankline) {
             /* done - str is now the string to check */
@@ -162,8 +165,7 @@
             (*patterns)[*patterns_count - 1].invert = 1;
         }
     }
-    assert(str);
-    if (blankline && (str[0] != '\0')) {
+    if (!str || (blankline && (str[0] != '\0'))) {
         /* corner case, no input after blankline meaning the pattern to check is empty */
         free(str);
         str = malloc(sizeof(char));