search for: regmatch_t

Displaying 7 results from an estimated 7 matches for "regmatch_t".

Did you mean: regmatch
1997 Jun 09
1
R-beta: compiling R under HP-UX
...symbol: "regoff_t". cc: "../include/regex.h", line 61: error 1000: Unexpected symbol: "rm_eo". cc: "../include/regex.h", line 62: error 1000: Unexpected symbol: "}". cc: "../include/regex.h", line 105: error 1000: Unexpected symbol: "regmatch_t". cc: "../include/regex.h", line 61: warning 557: Missing declaration specifiers, "int" assumed. cc: "../include/regex.h", line 62: error 1573: Type of "regmatch_t" is undefined due to an illegal declaration. *** Error exit code 1 Stop. *** Error exit c...
2001 Jan 23
11
cc & no 64bit int patches
Here are a couple of patches against the CVS (Jan 22 18:41 PST) Some C++ comments found their way into ssh.h The no64.patch puts ifdefs around buffer_get_int64() now in bufaux.[c,h] -- Tim Rice Multitalents (707) 887-1469 tim at multitalents.net -------------- next part -------------- --- ssh.h.old Mon Jan 22 18:40:58 2001 +++ ssh.h Mon Jan 22 19:02:02 2001 @@ -25,8 +25,10 @@ # include
2013 Mar 19
1
[LLVMdev] Strange linker error with clang 3.2
...string': /«PKGBUILDDIR»/src/rrep.c:230: undefined reference to `write_replacement' clang: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [rrep] Error 1 rrep.c has the following layout: inline int write_replacement (FILE *fp, const char *start, const regmatch_t *match, const replace_t *replacement, const char *file_name, char **pos) { ... } ... if (write_replacement (out, start, match, replacement, file_name, &pos) != SUCCESS) return FAILURE; ... The full log is at http://clang.debian.net/logs/2013-01-28/rrep_1.3.3-2_unstable_clang...
2007 Sep 07
1
"bug" and patch: quadratic running time for strsplit(..., fixed=TRUE) (PR#9902)
...y) @@ -357,7 +357,7 @@ int i, j, len, tlen, ntok, slen; int extended_opt, cflags, fixed_opt, perl_opt; char *pt = NULL; - const char *buf, *split = "", *bufp, *laststart; + const char *buf, *split = "", *bufp, *laststart, *ebuf = NULL; regex_t reg; regmatch_t regmatch[1]; pcre *re_pcre = NULL; @@ -419,7 +419,8 @@ if(fixed_opt) { /* This is UTF-8 safe since it compares whole strings */ laststart = buf; - for(bufp = buf; bufp - buf < strlen(buf); bufp++) { + ebuf = buf + strlen(buf); + for(bufp = buf; bufp < ebuf; bufp++) {...
2007 Aug 23
1
[nut-commits] svn commit r1073 - in trunk: . drivers
.... Return 1 if it > - matches, 0 if not. Return -1 on error with errno set. Special > - cases: if preg==NULL, it matches everything (no contraint). If > - str==NULL, then it is treated as "". */ > -static int match_regex(regex_t *preg, char *str) { > - int r; > - regmatch_t pmatch[1]; > - char *p, *q; > - int len; > - > - if (preg == NULL) { > - return 1; > - } > - if (str == NULL) { > - str = ""; > - } > - > - /* make a copy of str with whitespace stripped */ > - for (q=str; *q==' ' || *q=='\t...
2000 Feb 07
4
Segmentation fault, devPS.c, 0.99.0 (PR#413)
Full_Name: Roger Bivand Version: 0.99.0 OS: RH Linux 6.1 Submission from: (NULL) (158.37.60.152) I am working on an interface between R and the GRASS geographical information system, written in R, with no dynamically loaded code. I have written full examples, and tested then under R 0.90.1, both by entering example() for each function and R CMD check, both of which worked without problem. Under
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with updates coming from blktap2.5. Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>