X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dfa%2Fagrep.c;h=0d671ef15296e7e7fbc758ef24b2362036d58787;hp=a741c1e19950b33eb6e76abde780ab78e0d51aca;hb=c97718edd01f7d1813edbf94c58b93a747143311;hpb=896c0427df9d8eff5de6a1735dcd992e067df844 diff --git a/dfa/agrep.c b/dfa/agrep.c index a741c1e..0d671ef 100644 --- a/dfa/agrep.c +++ b/dfa/agrep.c @@ -1,8 +1,5 @@ -/* $Id: agrep.c,v 1.13 2002-08-02 19:26:55 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1994-2011 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -15,12 +12,15 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include @@ -32,14 +32,13 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #ifdef WIN32 - #include - -#else +#endif +#if HAVE_UNISTD_H #include #endif -#include +#include #include #include "imalloc.h" @@ -61,9 +60,7 @@ void error (const char *format, ...) static int show_lines = 0; -int agrep_options (argc, argv) -int argc; -char **argv; +int agrep_options (int argc, char **argv) { while (--argc > 0) if (**++argv == '-') @@ -113,8 +110,7 @@ static char *inf_buf; static char *inf_ptr, *inf_flsh; static int inf_eof, line_no; -static int inf_flush (fd) -int fd; +static int inf_flush (int fd) { char *p; unsigned b, r; @@ -144,8 +140,7 @@ int fd; return 0; } -static char *prline (p) -char *p; +static char *prline (char *p) { char *p0; @@ -164,9 +159,7 @@ char *p; return p; } -static int go (fd, dfaar) -int fd; -struct DFA_state **dfaar; +static int go (int fd, struct DFA_state **dfaar) { struct DFA_state *s = dfaar[0]; struct DFA_tran *t; @@ -221,9 +214,7 @@ struct DFA_state **dfaar; return 0; } -int agrep (dfas, fd) -struct DFA_state **dfas; -int fd; +int agrep (struct DFA_state **dfas, int fd) { inf_buf = imalloc (sizeof(char)*INF_BUF_SIZE); inf_eof = 0; @@ -238,9 +229,7 @@ int fd; } -int main (argc, argv) -int argc; -char **argv; +int main (int argc, char **argv) { const char *pattern = NULL; char outbuf[BUFSIZ]; @@ -300,3 +289,12 @@ char **argv; dfa_delete (&dfa); return 0; } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +