diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-10 12:56:29 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-10 12:57:13 +0200 |
| commit | a6e301c3c4e52cab0ca042af5934cfba3c76a9c0 (patch) | |
| tree | 95a2e4bc6361de9623eebe782542eeccea7da77f | |
| parent | 49196eba130b3ab4f0939f13d071aef3d0a70eab (diff) | |
| download | vis-a6e301c3c4e52cab0ca042af5934cfba3c76a9c0.tar.gz vis-a6e301c3c4e52cab0ca042af5934cfba3c76a9c0.tar.xz | |
Add license header
| -rw-r--r-- | text-motions.c | 15 | ||||
| -rw-r--r-- | text-objects.c | 15 | ||||
| -rw-r--r-- | vis.c | 15 |
3 files changed, 45 insertions, 0 deletions
diff --git a/text-motions.c b/text-motions.c index c453cab..f152c8a 100644 --- a/text-motions.c +++ b/text-motions.c @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2014 Marc André Tanner <mat at brain-dump.org> + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ #include <ctype.h> #include <string.h> #include "text-motions.h" diff --git a/text-objects.c b/text-objects.c index bce8b5b..f4ff1f2 100644 --- a/text-objects.c +++ b/text-objects.c @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2014 Marc André Tanner <mat at brain-dump.org> + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ #include <ctype.h> #include "text-motions.h" #include "text-objects.h" @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2014 Marc André Tanner <mat at brain-dump.org> + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ #define _POSIX_SOURCE #include <locale.h> #include <stdlib.h> |
