aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-28 22:58:17 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-28 22:58:17 -0800
commitb2a44f8dbdc21159c4be5739680b5009edd797c0 (patch)
treef8b4b458d31e10ccd99cedb8bf8b124c6c86aadf
parent86a9bafec3e20414b709a554d974cff2eba3d30c (diff)
Tweaked comment format and bumped copyright year
-rw-r--r--LICENSE2
-rw-r--r--bb.c8
-rw-r--r--draw.h6
-rw-r--r--terminal.c10
-rw-r--r--terminal.h10
-rw-r--r--types.h8
-rw-r--r--utils.h8
7 files changed, 28 insertions, 24 deletions
diff --git a/LICENSE b/LICENSE
index b692a92..afc8d25 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,5 +1,5 @@
MIT License
-Copyright 2019 Bruce Hill <bruce@bruce-hill.com>
+Copyright 2020 Bruce Hill <bruce@bruce-hill.com>
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
diff --git a/bb.c b/bb.c
index 2280ca7..23ff76f 100644
--- a/bb.c
+++ b/bb.c
@@ -1,9 +1,9 @@
//
-// Bitty Browser (bb)
-// Copyright 2019 Bruce Hill
-// Released under the MIT license
+// bb.c
+// Copyright 2020 Bruce Hill
+// Released under the MIT license
//
-// This file contains the main source code of `bb`.
+// This file contains the main source code of `bb` the Bitty Browser.
//
#include <ctype.h>
diff --git a/draw.h b/draw.h
index 7fae87d..f6ebd75 100644
--- a/draw.h
+++ b/draw.h
@@ -1,5 +1,9 @@
//
-// draw.h - This file contains definitions for bb column-drawing code.
+// draw.h
+// Copyright 2020 Bruce Hill
+// Released under the MIT license
+//
+// This file contains definitions for bb column-drawing code.
//
#ifndef FILE_COLUMNS__H
diff --git a/terminal.c b/terminal.c
index 27b8e2f..09debb6 100644
--- a/terminal.c
+++ b/terminal.c
@@ -1,10 +1,10 @@
//
-// terminal.c
-// Copyright 2019 Bruce Hill
-// Released under the MIT License
+// terminal.c
+// Copyright 2020 Bruce Hill
+// Released under the MIT License
//
-// Implementations of some basic terminal stuff, like reading keys and some
-// terminal escape sequences.
+// Implementations of some basic terminal stuff, like reading keys and some
+// terminal escape sequences.
//
#include <stdio.h>
diff --git a/terminal.h b/terminal.h
index c22754d..2189f35 100644
--- a/terminal.h
+++ b/terminal.h
@@ -1,10 +1,10 @@
//
-// terminal.h
-// Copyright 2019 Bruce Hill
-// Released under the MIT License
+// terminal.h
+// Copyright 2020 Bruce Hill
+// Released under the MIT License
//
-// Definitions of some basic terminal stuff, like reading keys and some
-// terminal escape sequences.
+// Definitions of some basic terminal stuff, like reading keys and some
+// terminal escape sequences.
//
#ifndef FILE__TERMINAL_H
diff --git a/types.h b/types.h
index 531bfa3..984049f 100644
--- a/types.h
+++ b/types.h
@@ -1,9 +1,9 @@
//
-// types.h
-// Copyright 2019 Bruce Hill
-// Released under the MIT license
+// types.h
+// Copyright 2020 Bruce Hill
+// Released under the MIT license
//
-// This file contains definitions of different types.
+// This file contains definitions of different types.
//
#ifndef FILE_TYPES__H
#define FILE_TYPES__H
diff --git a/utils.h b/utils.h
index 65e7aaa..7408eae 100644
--- a/utils.h
+++ b/utils.h
@@ -1,9 +1,9 @@
//
-// utils.h
-// Copyright 2020 Bruce Hill
-// Released under the MIT license
+// utils.h
+// Copyright 2020 Bruce Hill
+// Released under the MIT license
//
-// This file contains some definitions of some utility macros.
+// This file contains some definitions of some utility macros.
//
#ifndef FILE_UTILS__H