Tweaked comment format and bumped copyright year

This commit is contained in:
Bruce Hill 2021-01-28 22:58:17 -08:00
parent 86a9bafec3
commit b2a44f8dbd
7 changed files with 28 additions and 24 deletions

View File

@ -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

6
bb.c
View File

@ -1,9 +1,9 @@
//
// Bitty Browser (bb)
// Copyright 2019 Bruce Hill
// 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>

6
draw.h
View File

@ -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

View File

@ -1,6 +1,6 @@
//
// terminal.c
// Copyright 2019 Bruce Hill
// Copyright 2020 Bruce Hill
// Released under the MIT License
//
// Implementations of some basic terminal stuff, like reading keys and some

View File

@ -1,6 +1,6 @@
//
// terminal.h
// Copyright 2019 Bruce Hill
// Copyright 2020 Bruce Hill
// Released under the MIT License
//
// Definitions of some basic terminal stuff, like reading keys and some

View File

@ -1,6 +1,6 @@
//
// types.h
// Copyright 2019 Bruce Hill
// Copyright 2020 Bruce Hill
// Released under the MIT license
//
// This file contains definitions of different types.