Make a few functions static (private)
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 7 Jan 2013 10:08:05 +0000 (11:08 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 7 Jan 2013 10:08:05 +0000 (11:08 +0100)
The functions getbyte_stream, ungetbyte_stream and yaz_gets
are now private. They were never declared in a header file.

src/cqlstdio.c
src/marc_read_line.c

index ccd9dde..8eebab1 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <yaz/cql.h>
 
-int getbyte_stream(void *client_data)
+static int getbyte_stream(void *client_data)
 {
     FILE *f = (FILE*) client_data;
 
@@ -22,7 +22,7 @@ int getbyte_stream(void *client_data)
     return c;
 }
 
-void ungetbyte_stream (int c, void *client_data)
+static void ungetbyte_stream(int c, void *client_data)
 {
     FILE *f = (FILE*) client_data;
 
index 684a522..123f475 100644 (file)
 #include <yaz/wrbuf.h>
 #include <yaz/yaz-util.h>
 
-int yaz_gets(int (*getbyte)(void *client_data),
-             void (*ungetbyte)(int b, void *client_data),
-             void *client_data,
-             WRBUF w)
+static int yaz_gets(int (*getbyte)(void *client_data),
+                    void (*ungetbyte)(int b, void *client_data),
+                    void *client_data,
+                    WRBUF w)
 {
     size_t sz = 0;
     int ch = getbyte(client_data);