diff options
Diffstat (limited to 'src/listfind.c')
-rw-r--r-- | src/listfind.c | 37 |
1 files changed, 16 insertions, 21 deletions
diff --git a/src/listfind.c b/src/listfind.c index 426312c..a2e88b8 100644 --- a/src/listfind.c +++ b/src/listfind.c @@ -1,21 +1,21 @@ -/****************************************************** +/* + * listfind: find a sublist in a list and return the index of the occurence (or indices if there are more) * - * zexy - implementation file + * (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem) * - * copyleft (c) IOhannes m zmölnig - * - * 1999:forum::für::umläute:2004 - * - * institute of electronic music and acoustics (iem) - * - ****************************************************** - * - * license: GNU General Public License v.2 - * - ******************************************************/ - -/* 2607:forum::für::umläute:2007 */ - + * This program 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 Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ #include "zexy.h" @@ -29,11 +29,6 @@ # define DEBUGFUN(x) #endif - -/* ------------------------- listfind ------------------------------- */ - -/* find a sublist in a list and return the index of the occurence (or indices if there are more) */ - static t_class *listfind_class; |