# HG changeset patch
# User John Tsiombikas <nuclear@mutantstargoat.com>
# Date 1316151727 -10800
# Node ID 095ff7ca4e7492d5069a1aa988d838abfecd7e4a
# Parent  17fed026b24b995438afadfbb76191cd3b3affe8
added copyright notices

diff -r 17fed026b24b -r 095ff7ca4e74 src/drawgl.c
--- a/src/drawgl.c	Fri Sep 16 08:31:06 2011 +0300
+++ b/src/drawgl.c	Fri Sep 16 08:42:07 2011 +0300
@@ -1,3 +1,20 @@
+/*
+libdrawtext - a simple library for fast text rendering in OpenGL
+Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #ifndef NO_OPENGL
 #include <math.h>
 #include <ctype.h>
diff -r 17fed026b24b -r 095ff7ca4e74 src/drawtext.h
--- a/src/drawtext.h	Fri Sep 16 08:31:06 2011 +0300
+++ b/src/drawtext.h	Fri Sep 16 08:42:07 2011 +0300
@@ -1,3 +1,20 @@
+/*
+libdrawtext - a simple library for fast text rendering in OpenGL
+Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #ifndef TEXT_H_
 #define TEXT_H_
 
diff -r 17fed026b24b -r 095ff7ca4e74 src/drawtext_impl.h
--- a/src/drawtext_impl.h	Fri Sep 16 08:31:06 2011 +0300
+++ b/src/drawtext_impl.h	Fri Sep 16 08:42:07 2011 +0300
@@ -1,3 +1,20 @@
+/*
+libdrawtext - a simple library for fast text rendering in OpenGL
+Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #ifndef TEXT_IMPL_H_
 #define TEXT_IMPL_H_
 
diff -r 17fed026b24b -r 095ff7ca4e74 src/font.c
--- a/src/font.c	Fri Sep 16 08:31:06 2011 +0300
+++ b/src/font.c	Fri Sep 16 08:42:07 2011 +0300
@@ -1,3 +1,20 @@
+/*
+libdrawtext - a simple library for fast text rendering in OpenGL
+Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #ifndef NO_FREETYPE
 #define USE_FREETYPE
 #endif
diff -r 17fed026b24b -r 095ff7ca4e74 src/utf8.c
--- a/src/utf8.c	Fri Sep 16 08:31:06 2011 +0300
+++ b/src/utf8.c	Fri Sep 16 08:42:07 2011 +0300
@@ -1,3 +1,20 @@
+/*
+libdrawtext - a simple library for fast text rendering in OpenGL
+Copyright (C) 2011  John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #include "drawtext.h"
 
 #define	U8_IS_FIRST(x)		(((((x) >> 7) & 1) == 0) || ((((x) >> 6) & 3) == 3))