diff options
author | reinelt <> | 2002-08-19 07:52:19 +0000 |
---|---|---|
committer | reinelt <> | 2002-08-19 07:52:19 +0000 |
commit | 2fa253477b2f12e033c7e337268ca1c4354a280a (patch) | |
tree | 2199705f23d1f48c5e9365f744fa35c721e097de /bar.c | |
parent | d8134396763fbf4ace33e6adfc98ebcb9ce3d49f (diff) | |
download | lcd4linux-2fa253477b2f12e033c7e337268ca1c4354a280a.tar.gz |
[lcd4linux @ 2002-08-19 07:52:19 by reinelt]
corrected type declaration of (*defchar)()
Diffstat (limited to 'bar.c')
-rw-r--r-- | bar.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: bar.c,v 1.2 2002/08/19 07:36:29 reinelt Exp $ +/* $Id: bar.c,v 1.3 2002/08/19 07:52:19 reinelt Exp $ * * generic bar handling * @@ -20,6 +20,9 @@ * * * $Log: bar.c,v $ + * Revision 1.3 2002/08/19 07:52:19 reinelt + * corrected type declaration of (*defchar)() + * * Revision 1.2 2002/08/19 07:36:29 reinelt * * finished bar.c, USBLCD is the first driver that uses the generic bar functions @@ -41,7 +44,7 @@ * * int bar_draw (int type, int row, int col, int max, int len1, int len2) * - * int bar_process (void) + * int bar_process (void(*defchar)(int ascii, char *matrix)) * * int bar_peek (int row, int col) * @@ -311,7 +314,7 @@ static void pack_segments (void) } -static void define_chars (int(*defchar)(int ascii, char *matrix)) +static void define_chars (void(*defchar)(int ascii, char *matrix)) { int c, i, j; char buffer[8]; @@ -373,7 +376,7 @@ static void define_chars (int(*defchar)(int ascii, char *matrix)) } -int bar_process (int(*defchar)(int ascii, char *matrix)) +int bar_process (void(*defchar)(int ascii, char *matrix)) { int n, s; |