diff options
Diffstat (limited to 'src/common')
-rwxr-xr-x | src/common/Makefile.am | 6 | ||||
-rw-r--r-- | src/common/extstr.c | 55 | ||||
-rw-r--r-- | src/common/extstr.h | 3 |
3 files changed, 61 insertions, 3 deletions
diff --git a/src/common/Makefile.am b/src/common/Makefile.am index f23941b..1bb66d9 100755 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,13 +1,13 @@ -lib_LIBRARIES = libcommon.a +lib_LTLIBRARIES = libcommon.la -libcommon_a_SOURCES = \ +libcommon_la_SOURCES = \ dllist.h dllist.c \ endianness.h endianness.c \ extstr.h extstr.c \ macros.h -libcommon_a_CFLAGS = $(AM_CFLAGS) +libcommon_la_LDFLAGS = INCLUDES = diff --git a/src/common/extstr.c b/src/common/extstr.c index aba9830..deffbd4 100644 --- a/src/common/extstr.c +++ b/src/common/extstr.c @@ -25,6 +25,7 @@ #include <malloc.h> +#include <regex.h> #include <string.h> @@ -83,3 +84,57 @@ char *strprep(char *str1, const char *str2) return result; } + + +/****************************************************************************** +* * +* Paramètres : input = chaîne de caractères à traiter. * +* * +* Description : S'assure qu'une chaîne de caractère tient sur une ligne. * +* * +* Retour : Adresse de la chaîne de caractères modifiée. * +* * +* Remarques : - * +* * +******************************************************************************/ + +char *escape_crlf(char *input) +{ + size_t inlen; + regex_t preg; + int ret; + size_t curpos; + regmatch_t pmatch[2]; + + inlen = strlen(input); + + ret = regcomp(&preg, "(\t|\n|\r)", REG_EXTENDED | REG_ICASE); + /* TODO: ret */ + + for (curpos = 0; regexec(&preg, &input[curpos], 2, pmatch, 0) != REG_NOMATCH; ) + { + inlen += 1 + 1; + input = (char *)realloc(input, inlen * sizeof(char *)); + + memmove(&input[curpos + pmatch[1].rm_eo + 1], &input[curpos + pmatch[1].rm_eo], inlen - 1 - curpos - pmatch[1].rm_eo); + + switch (input[curpos + pmatch[1].rm_so]) + { + case '\t': + memcpy(&input[curpos + pmatch[1].rm_so], "\\t", 2); + break; + case '\n': + memcpy(&input[curpos + pmatch[1].rm_so], "\\n", 2); + break; + case '\r': + memcpy(&input[curpos + pmatch[1].rm_so], "\\r", 2); + break; + } + + curpos += pmatch[1].rm_eo + 1; + + } + + return input; + +} diff --git a/src/common/extstr.h b/src/common/extstr.h index 8975000..8baa2e2 100644 --- a/src/common/extstr.h +++ b/src/common/extstr.h @@ -32,6 +32,9 @@ char *stradd(char *str1, const char *str2); /* Fait précéder une chaîne de caractères par une autre. */ char *strprep(char *, const char *); +/* S'assure qu'une chaîne de caractère tient sur une ligne. */ +char *escape_crlf(char *); + #endif /* _COMMON_EXTSTR_H */ |