Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv29649/include/blob
Modified Files:
serial.h
Log Message:
1. Backed out my printf() function again because I realised if we don't
include the C library stdarg.h there is no portable way to handle variable
arguments :P If someone comes up with a hack for this, I'll add the printf()
stuff again - would be useful...
2. Made UU Codec support optional.
Index: serial.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/serial.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- serial.h 2002/02/05 13:40:46 1.6
+++ serial.h 2002/02/05 14:47:54 1.7
@@ -96,8 +96,6 @@
void SerialOutputBlock(const char *buf, int bufsize);
void SerialOutputChar (const char c);
-void SerialPrintf(const char *fmt, ...);
-
int SerialInputString(char *s, const int len, const int timeout);
int SerialInputBlock(char *buf, int bufsize, const int timeout);
|