]> sigrok.org Git - libsigrok.git/commitdiff
Make some more items 'static'.
authorUwe Hermann <redacted>
Tue, 22 Feb 2011 22:12:41 +0000 (23:12 +0100)
committerUwe Hermann <redacted>
Thu, 3 Mar 2011 19:24:25 +0000 (20:24 +0100)
output/output_binary.c
output/output_gnuplot.c
output/output_ols.c
output/output_vcd.c
output/text/ascii.c
output/text/bits.c
output/text/hex.c
output/text/text.c

index e3edf62ef3e46fbf28bdad120f94d5eeac9771d0..076d497ce2b5c9a2f6d04796ebd3fd3a104c0539 100644 (file)
@@ -24,7 +24,6 @@
 #include <sigrok.h>
 #include "config.h"
 
-
 static int data(struct sr_output *o, const char *data_in, uint64_t length_in,
                char **data_out, uint64_t *length_out)
 {
index 43033777f4ee2abe1649c89b369f653fe4b4384f..a52c3dc1a7dcfb597ffa952ebad82cc36d19e98f 100644 (file)
@@ -34,7 +34,7 @@ struct context {
 #define MAX_HEADER_LEN \
        (1024 + (SR_MAX_NUM_PROBES * (SR_MAX_PROBENAME_LEN + 10)))
 
-const char *gnuplot_header = "\
+static const char *gnuplot_header = "\
 # Sample data in space-separated columns format usable by gnuplot\n\
 #\n\
 # Generated by: %s on %s%s\
@@ -45,7 +45,7 @@ const char *gnuplot_header = "\
 ----------------------------------------\n\
 # 0\t\tSample counter (for internal gnuplot purposes)\n%s\n";
 
-const char *gnuplot_header_comment = "\
+static const char *gnuplot_header_comment = "\
 # Comment: Acquisition with %d/%d probes at %s\n";
 
 static int init(struct sr_output *o)
index 966eb0b75e0dffe42849db14f5d2dd8850c2dd9c..31e1b055a447c94d2d8a52dc087349016124c209 100644 (file)
@@ -37,7 +37,6 @@ struct context {
        unsigned int unitsize;
 };
 
-
 static int init(struct sr_output *o)
 {
        struct context *ctx;
index a61443dbf3b6c91a10b1dcdb788435e76628f80e..4b76de0a088512529f0f89bfd9fbd6e25428f266 100644 (file)
@@ -46,7 +46,7 @@ $upscope $end\n\
 $enddefinitions $end\n\
 $dumpvars\n";
 
-const char *vcd_header_comment = "\
+static const char *vcd_header_comment = "\
 $comment\n  Acquisition with %d/%d probes at %s\n$end\n";
 
 static int init(struct sr_output *o)
index 04d39ea37565f297ddd045e9c2e51d1f3d4df5f3..75ab60b98c88f14598c1037a47f4a3b6a42d6f36 100644 (file)
@@ -24,7 +24,6 @@
 #include <sigrok.h>
 #include "text.h"
 
-
 int init_ascii(struct sr_output *o)
 {
        return init(o, DEFAULT_BPL_ASCII, MODE_ASCII);
@@ -114,7 +113,6 @@ int data_ascii(struct sr_output *o, const char *data_in, uint64_t length_in,
        return SR_OK;
 }
 
-
 struct sr_output_format output_text_ascii = {
        "ascii",
        "ASCII (takes argument, default 74)",
@@ -123,4 +121,3 @@ struct sr_output_format output_text_ascii = {
        data_ascii,
        event,
 };
-
index 43eb7d0200633cd0c86ff462eadc4c6668053721..cb8ec5984f79996340721233ddc8b7db500a3e7d 100644 (file)
@@ -24,7 +24,6 @@
 #include <sigrok.h>
 #include "text.h"
 
-
 int init_bits(struct sr_output *o)
 {
        return init(o, DEFAULT_BPL_BITS, MODE_BITS);
@@ -101,7 +100,6 @@ int data_bits(struct sr_output *o, const char *data_in, uint64_t length_in,
        return SR_OK;
 }
 
-
 struct sr_output_format output_text_bits = {
        "bits",
        "Bits (takes argument, default 64)",
@@ -110,4 +108,3 @@ struct sr_output_format output_text_bits = {
        data_bits,
        event,
 };
-
index bd9aa09d49f141dcd1f3bef1425d553ec8e29d75..285102ee461f7005289e7ee0bc3b7d39fc69227e 100644 (file)
@@ -24,7 +24,6 @@
 #include <sigrok.h>
 #include "text.h"
 
-
 int init_hex(struct sr_output *o)
 {
        return init(o, DEFAULT_BPL_HEX, MODE_HEX);
@@ -90,7 +89,6 @@ int data_hex(struct sr_output *o, const char *data_in, uint64_t length_in,
        return SR_OK;
 }
 
-
 struct sr_output_format output_text_hex = {
        "hex",
        "Hexadecimal (takes argument, default 192)",
@@ -99,4 +97,3 @@ struct sr_output_format output_text_hex = {
        data_hex,
        event,
 };
-
index 98735eb41c7f5c4c6cfdb242a2ad9ba13b060ea0..6ca8983c31a93806e6e2d74adf3ff0a0fc265556 100644 (file)
@@ -26,7 +26,6 @@
 #include "config.h"
 #include "text.h"
 
-
 void flush_linebufs(struct context *ctx, char *outbuf)
 {
        static int max_probename_len = 0;
@@ -170,4 +169,3 @@ int event(struct sr_output *o, int event_type, char **data_out,
 
        return SR_OK;
 }
-