tree: add standard copyright phrasing

Callisto - standalone scripting platform for Lua 5.4
Copyright (c) 2023-2024 Jeremy Baxter.
This commit is contained in:
Jeremy Baxter 2024-02-19 10:16:45 +13:00
parent 280f516a21
commit 8c5777fb98
11 changed files with 47 additions and 3 deletions

View file

@ -1,5 +1,6 @@
/* /*
* callisto - standalone scripting platform for Lua 5.4 * Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/ */
#include <lua.h> #include <lua.h>

View file

@ -1,5 +1,6 @@
/* /*
* callisto - standalone scripting platform for Lua 5.4 * Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/ */
#ifndef _CALLISTO_H_ #ifndef _CALLISTO_H_

4
csto.c
View file

@ -1,5 +1,7 @@
/* /*
* csto: The Callisto stand-alone interpreter * csto: the Callisto stand-alone interpreter
* Copyright (c) 1994-2023 Lua.org, PUC-Rio.
* Copyright (c) 2023-2024 Jeremy Baxter.
*/ */
#include <stdio.h> #include <stdio.h>

5
lcl.c
View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Option parsing, and error formatting * Option parsing, and error formatting
* for the command line. * for the command line.

View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Getting and setting environment variables. * Getting and setting environment variables.
* @module environ * @module environ

View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Extra functions that don't fit into any other category. * Extra functions that don't fit into any other category.
* *

5
lfs.c
View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Files, directories and file system manipulation. * Files, directories and file system manipulation.
* *

View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Manipulation of JavaScript Object Notation (JSON) values. * Manipulation of JavaScript Object Notation (JSON) values.
* *

View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/*** /***
* Processes, signals, and signal handlers. * Processes, signals, and signal handlers.
* *

5
util.c
View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
/* /*
* util.c * util.c
* *

5
util.h
View file

@ -1,3 +1,8 @@
/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
#ifndef _UTIL_H_ #ifndef _UTIL_H_
#define _UTIL_H_ #define _UTIL_H_