]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - uart.h
+DES/3DES
[avr-crypto-lib.git] / uart.h
diff --git a/uart.h b/uart.h
index e8e3b202ebf2a580b0119212b812152f4cf8ec48..a72b16768bd60b549f4160f25a2089becaaedbf1 100644 (file)
--- a/uart.h
+++ b/uart.h
@@ -27,11 +27,13 @@ void uart_putstr_P(PGM_P str);
 void uart_hexdump(void* buf, int len);
 
 char uart_getc(void);
-char uart_getc_nb(char *c);            // returns 1 on success
+char uart_getc_nb(char *c);            /* returns 1 on success */
 
-//get one Cariage return terminated line
-//echo charakters back on Uart
-//returns buffer with zero terminated line on success, 0 pointer otherwise
+/*
+  get one Cariage return terminated line
+  echo charakters back on Uart
+  returns buffer with zero terminated line on success, 0 pointer otherwise
+*/
 char * uart_getline_nb(void);
 
 #endif