[BACK]Return to regex2.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / regex

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/regex/regex2.h between version 1.10 and 1.11

version 1.10, 2003/08/07 16:43:20 version 1.11, 2004/03/26 22:42:17
Line 206  struct re_guts {
Line 206  struct re_guts {
   
 /* misc utilities */  /* misc utilities */
 #define OUT     (CHAR_MAX+1)    /* a non-character value */  #define OUT     (CHAR_MAX+1)    /* a non-character value */
 #define ISWORD(c)       (isalnum(c) || (c) == '_')  #define ISWORD(c)       (isalnum((unsigned char)c) || (c) == '_')

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>