Skip to content

Commit

Permalink
Update copyright dates
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Mar 5, 2021
1 parent 6c7fcb9 commit 533e921
Show file tree
Hide file tree
Showing 53 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2020 Tomasz Lemiech
Copyright (c) 2018-2021 Tomasz Lemiech

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ testing of libacars. Special thanks go to:

## Licenses

libacars, Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
libacars, Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion doc/API_REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

API version: 2.0

Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>

## Basic data types

Expand Down
2 changes: 1 addition & 1 deletion doc/PROG_GUIDE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# libacars-2 Programmer's Guide
Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>

## Introduction

Expand Down
4 changes: 2 additions & 2 deletions examples/adsc_get_position.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* adsc_get_position - an example program showing how to extract
* aircraft position information from downlink ADS-C messages.
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdbool.h>
#include <stdio.h>
Expand All @@ -17,7 +17,7 @@
void usage() {
fprintf(stderr,
"adsc_get_position - extracts position information from ADS-C Basic Report\n"
"(c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"(c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"Usage:\n\n"
"To decode a single message from command line:\n\n"
"\t./adsc_get_position <acars_message_text>\n\n"
Expand Down
4 changes: 2 additions & 2 deletions examples/cpdlc_get_position.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* aircraft position information from downlink CPDLC message with
* a position report.
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdbool.h>
#include <stdio.h>
Expand All @@ -24,7 +24,7 @@
void usage() {
fprintf(stderr,
"cpdlc_get_position - extracts position information from CPDLC Position Report\n"
"(c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"(c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"Usage:\n\n"
"To decode a single message from command line:\n\n"
"\t./cpdlc_get_position <acars_message_text>\n\n"
Expand Down
4 changes: 2 additions & 2 deletions examples/decode_acars_apps.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* decode_acars_apps - an example decoder for ACARS applications
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdbool.h> /* true */
#include <stdio.h> /* printf(), fprintf(), fgets() */
Expand All @@ -15,7 +15,7 @@
void usage() {
fprintf(stderr,
"decode_acars_apps - an example decoder of ACARS applications\n"
"(c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"(c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>\n\n"
"Usage:\n\n"
"To decode a single message from command line:\n\n"
"\t./decode_acars_apps <direction> <acars_label> <acars_message_text>\n\n"
Expand Down
2 changes: 1 addition & 1 deletion libacars/acars.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <string.h> // memcpy(), strdup()
Expand Down
2 changes: 1 addition & 1 deletion libacars/acars.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ACARS_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/adsc.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/adsc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ADSC_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/arinc.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/arinc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ARINC_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-format-common.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <libacars/asn1/asn_application.h> // asn_TYPE_descriptor_t, asn_sprintf
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-format-common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ASN1_FORMAT_COMMON_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-format-cpdlc-json.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <libacars/asn1/FANSATCDownlinkMessage.h> /* FANSATCDownlinkMessage_t and dependencies */
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-format-cpdlc-text.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <libacars/asn1/FANSATCDownlinkMessage.h> // FANSATCDownlinkMessage_t and dependencies
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-format-cpdlc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ASN1_FORMAT_CPDLC_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-util.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/asn1-util.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_ASN1_UTIL_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/bitstream.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdint.h>
#include <libacars/util.h> // LA_XCALLOC, LA_XFREE
Expand Down
2 changes: 1 addition & 1 deletion libacars/bitstream.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef _LA_BITSTREAM_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/config.h.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#ifndef _CONFIG_H
#define _CONFIG_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/config_defaults.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

/* Default libacars configuration settings */
Expand Down
2 changes: 1 addition & 1 deletion libacars/configuration.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/cpdlc.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdio.h>
#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/cpdlc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_CPDLC_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/crc.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/crc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_CRC_ARINC_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/dict.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stddef.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/dict.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#ifndef LA_DICT_H
#define LA_DICT_H 1
Expand Down
2 changes: 1 addition & 1 deletion libacars/hash.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion libacars/hash.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#ifndef LA_HASH_H
#define LA_HASH_H 1
Expand Down
2 changes: 1 addition & 1 deletion libacars/json.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <inttypes.h> // PRI* macros
Expand Down
2 changes: 1 addition & 1 deletion libacars/json.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_JSON_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/libacars.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#include <stdbool.h>
#ifdef DEBUG
Expand Down
2 changes: 1 addition & 1 deletion libacars/libacars.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_LIBACARS_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/list.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <libacars/macros.h> // la_assert
Expand Down
2 changes: 1 addition & 1 deletion libacars/list.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/
#ifndef LA_LIST_H
#define LA_LIST_H 1
Expand Down
2 changes: 1 addition & 1 deletion libacars/macros.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#ifndef LA_MACROS_H
Expand Down
2 changes: 1 addition & 1 deletion libacars/media-adv.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is a part of libacars
*
* Copyright (c) 2018-2020 Tomasz Lemiech <szpajder@gmail.com>
* Copyright (c) 2018-2021 Tomasz Lemiech <szpajder@gmail.com>
*/

#include <stdbool.h>
Expand Down
Loading

0 comments on commit 533e921

Please sign in to comment.