aboutsummaryrefslogtreecommitdiffstats
path: root/bar.c
diff options
context:
space:
mode:
authorreinelt <>2002-08-19 07:52:19 +0000
committerreinelt <>2002-08-19 07:52:19 +0000
commit2fa253477b2f12e033c7e337268ca1c4354a280a (patch)
tree2199705f23d1f48c5e9365f744fa35c721e097de /bar.c
parentd8134396763fbf4ace33e6adfc98ebcb9ce3d49f (diff)
downloadlcd4linux-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.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/bar.c b/bar.c
index e48ae4d..837eee1 100644
--- a/bar.c
+++ b/bar.c
@@ -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;