diff options
author | portix <portix@gmx.net> | 2011-01-02 16:00:49 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-01-02 16:00:49 +0100 |
commit | f2c951b84765d8ca04bfc6629be9cba9aeea493e (patch) | |
tree | bfc28d1215211730d05e3f1f152949bc571fb791 /src/util.c | |
parent | f6480ba5fb1ca3e7600ec692d47881d71ab45ec8 (diff) | |
download | dwb-f2c951b84765d8ca04bfc6629be9cba9aeea493e.zip |
Licensing information, include all foreign headers in dwb.h
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -1,12 +1,21 @@ -#include <ctype.h> -#include <stdlib.h> -#include <string.h> -#include <gtk/gtk.h> -#include <errno.h> -#include <sys/socket.h> -#include <webkit/webkit.h> -#include <gdk/gdkkeysyms.h> -#include "dwb.h" +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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 3 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #include "util.h" /* dwb_util_string_replace(const char *haystack, const char *needle, const char *replace) return: char * (alloc){{{*/ |