]> sigrok.org Git - libsigrok.git/blobdiff - output/text/bits.c
Add sr_ prefix to input/output structs.
[libsigrok.git] / output / text / bits.c
index c124ece5a6c5f596c313ce0318a9690e87695336..b9b1347798c44656c5a1b5be59a2e03dd9557dc0 100644 (file)
 #include "text.h"
 
 
-int init_bits(struct output *o)
+int init_bits(struct sr_output *o)
 {
        return init(o, DEFAULT_BPL_BITS, MODE_BITS);
 }
 
-int data_bits(struct output *o, char *data_in, uint64_t length_in,
+int data_bits(struct sr_output *o, char *data_in, uint64_t length_in,
                     char **data_out, uint64_t *length_out)
 {
        struct context *ctx;
@@ -50,7 +50,7 @@ int data_bits(struct output *o, char *data_in, uint64_t length_in,
             * (ctx->num_enabled_probes * max_linelen);
 
        if (!(outbuf = calloc(1, outsize + 1)))
-               return SIGROK_ERR_MALLOC;
+               return SR_ERR_MALLOC;
 
        outbuf[0] = '\0';
        if (ctx->header) {
@@ -98,11 +98,11 @@ int data_bits(struct output *o, char *data_in, uint64_t length_in,
        *data_out = outbuf;
        *length_out = strlen(outbuf);
 
-       return SIGROK_OK;
+       return SR_OK;
 }
 
 
-struct output_format output_text_bits = {
+struct sr_output_format output_text_bits = {
        "bits",
        "Bits (takes argument, default 64)",
        DF_LOGIC,