X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/31be35cda26f033fe62db673a8a973f0b15c9de7..refs/heads/master:/lib/console.c diff --git a/lib/console.c b/lib/console.c index 27880ba..db95d7d 100644 --- a/lib/console.c +++ b/lib/console.c @@ -1,12 +1,15 @@ -/** @file console.c - * @brief A console driver. +/* console.c + * A console driver. + * + * Copyright (c) 2008 Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. * - * @author Joshua Wise (jwise) - * @bug None known */ #include #include "console-ext.h" +#include #include #define POS_IS_VALID(row, col) ((row) >= 0 && (row) < CONSOLE_HEIGHT && (col) >= 0 && (col) < CONSOLE_WIDTH)