Add copyright and license comments

This commit is contained in:
Camden Dixie O'Brien 2024-10-24 23:06:25 +01:00
parent a8d8bd216b
commit 69d4bb51f4
8 changed files with 40 additions and 0 deletions

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include "evaluator.h"
int evaluate(const expression_t *expression)

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef EVALUATOR_H
#define EVALUATOR_H

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef EXPRESSION_H
#define EXPRESSION_H

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef MEMORY_POOL_H
#define MEMORY_POOL_H

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef READER_H
#define READER_H

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include "memory_pool.h"
#include <stddef.h>

View File

@ -1,3 +1,8 @@
/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include "reader.h"
#include <ctype.h>