]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - avr/con-utils.c
Add CP/M 3 file i/o (initial version)
[z180-stamp.git] / avr / con-utils.c
index b8017ed4f7f70a1528ef2e747f1d5d645efb5925..f20dbfed214258bf77eb18e85d3f10f93a3b610c 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
 
 #include <string.h>
 #include "common.h"
@@ -15,7 +20,7 @@ uint_fast8_t tstc(void)
 int my_getchar(uint_fast8_t waitforchar)
 {
        int c;
-       
+
        do {
                bg_shed();
                c = serial_getc();
@@ -92,4 +97,3 @@ void clear_ctrlc(void)
 {
        ctrlc_was_pressed = 0;
 }
-