Ignore:
Timestamp:
Nov 4, 2007, 3:16:40 AM (17 years ago)
Author:
Bruno Cornec
Message:

Update to busybox 1.7.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/include/xregex.h

    r821 r1765  
    11/* vi: set sw=4 ts=4: */
    22/*
    3  * Busybox xregcomp utility routine
    4  *
    5  *
    6  * This program is free software; you can redistribute it and/or modify
    7  * it under the terms of the GNU General Public License as published by
    8  * the Free Software Foundation; either version 2 of the License, or
    9  * (at your option) any later version.
    10  *
    11  * This program is distributed in the hope that it will be useful,
    12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    14  * General Public License for more details.
    15  *
    16  * You should have received a copy of the GNU General Public License
    17  * along with this program; if not, write to the Free Software
    18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
     3 * Busybox xregcomp utility routine.  This isn't in libbb.h because the
     4 * C library we're linking against may not support regex.h.
    195 *
    206 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
    217 * Permission has been granted to redistribute this code under the GPL.
    228 *
     9 * Licensed under GPLv2 or later, see file License in this tarball for details.
    2310 */
    2411#ifndef __BB_REGEX__
    2512#define __BB_REGEX__
    2613
    27 #include <sys/types.h>
    2814#include <regex.h>
    29 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
     15char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags);
     16void xregcomp(regex_t *preg, const char *regex, int cflags);
    3017
    3118#endif
Note: See TracChangeset for help on using the changeset viewer.