clarify license information

This commit is contained in:
Yuichi Nishiwaki 2014-01-17 20:58:31 +09:00
parent dc773f9560
commit ca068f560b
45 changed files with 213 additions and 0 deletions

18
LICENSE Normal file
View File

@ -0,0 +1,18 @@
Copyright (c) 2012-2013 Yuichi Nishiwaki and other picrin contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef CONFIG_H__
#define CONFIG_H__

View File

@ -1,3 +1,26 @@
/**
* Copyright (c) 2012-2013 Yuichi Nishiwaki and other picrin contributors.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef PICRIN_H__
#define PICRIN_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef BLOB_H__
#define BLOB_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef CONT_H__
#define CONT_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef ERROR_H__
#define ERROR_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef GC_H__
#define GC_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef IREP_H__
#define IREP_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef LIB_H__
#define LIB_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef MACRO_H__
#define MACRO_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef PAIR_H__
#define PAIR_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef PARSE_H__
#define PARSE_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef PORT_H__
#define PORT_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef PROC_H__
#define PROC_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef VALUE_H__
#define VALUE_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#ifndef VAR_H__
#define VAR_H__

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <string.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <string.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
static pic_value

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <assert.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <setjmp.h>
#include <string.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdlib.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
#include "picrin/lib.h"
#include "picrin/pair.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
#include "picrin/pair.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <assert.h>
#include <string.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <math.h>
#include <limits.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdarg.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
%{
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
#include "picrin/pair.h"
#include "picrin/proc.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
%{
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdlib.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <string.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <string.h>
#include <stdlib.h>
#include <math.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdlib.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <time.h>
#include "picrin.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdlib.h>
#include <stdbool.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin/var.h"
#include <assert.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
#include "picrin/pair.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
#include "picrin/port.h"
#include "picrin/pair.h"

View File

@ -1,3 +1,7 @@
/**
* See Copyright Notice in picrin.h
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>