]> sigrok.org Git - libsigrok.git/blobdiff - input/input.c
Add/update Doxygen @since tags.
[libsigrok.git] / input / input.c
index e876dfcaa838f9cc703b608c9122d4fedb59a1c9..d22b373467caa894e6ee4b7618b4819e461dd6aa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
  *
@@ -51,6 +51,7 @@
 
 /** @cond PRIVATE */
 extern SR_PRIV struct sr_input_format input_chronovu_la8;
+extern SR_PRIV struct sr_input_format input_csv;
 extern SR_PRIV struct sr_input_format input_binary;
 extern SR_PRIV struct sr_input_format input_vcd;
 extern SR_PRIV struct sr_input_format input_wav;
@@ -60,11 +61,13 @@ static struct sr_input_format *input_module_list[] = {
        &input_vcd,
        &input_chronovu_la8,
        &input_wav,
+       &input_csv,
        /* This one has to be last, because it will take any input. */
        &input_binary,
        NULL,
 };
 
+/** @since 0.1.0 */
 SR_API struct sr_input_format **sr_input_list(void)
 {
        return input_module_list;