| 1 | /* ---------------- */ |
|---|
| 2 | /* --- nrio1x.h --- */ |
|---|
| 3 | /* ---------------- */ |
|---|
| 4 | |
|---|
| 5 | /* |
|---|
| 6 | * Copyright (c) 2000-2014, Lionel Lacassagne, All rights reserved |
|---|
| 7 | * Univ Paris Sud XI, CNRS |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | #ifndef _NR_IO1X_H_ |
|---|
| 11 | #define _NR_IO1X_H_ |
|---|
| 12 | |
|---|
| 13 | #define display_type_vector_circular(t) \ |
|---|
| 14 | void short_name(t,display_,vector_circular)(t * v, int32_t nl, int32_t nh, int32_t c0, int32_t c1, char * format, char * name); \ |
|---|
| 15 | void short_name(t,display_,vector_circular_number)(t * v, int32_t nl, int32_t nh, int32_t c0, int32_t c1, char * format, char * name); \ |
|---|
| 16 | void short_name(t,display_,vector_cycle)(t * v, int32_t nl, int32_t nh, char * format, char * name); \ |
|---|
| 17 | void short_name(t,write_,vector_circular)(t * v, int32_t nl, int32_t nh, int32_t c0, int32_t c1, char * format, char * filename) |
|---|
| 18 | |
|---|
| 19 | display_type_vector_circular(int8_t); |
|---|
| 20 | display_type_vector_circular(uint8_t); |
|---|
| 21 | display_type_vector_circular(int16_t); |
|---|
| 22 | display_type_vector_circular(uint16_t); |
|---|
| 23 | display_type_vector_circular(int32_t); |
|---|
| 24 | display_type_vector_circular(uint32_t); |
|---|
| 25 | display_type_vector_circular(int64_t); |
|---|
| 26 | display_type_vector_circular(uint64_t); |
|---|
| 27 | display_type_vector_circular(float); |
|---|
| 28 | display_type_vector_circular(double); |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | #endif // _NR_IO1X_H_ |
|---|
| 32 | |
|---|
| 33 | // Local Variables: |
|---|
| 34 | // tab-width: 4 |
|---|
| 35 | // c-basic-offset: 4 |
|---|
| 36 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
|---|
| 37 | // indent-tabs-mode: nil |
|---|
| 38 | // End: |
|---|
| 39 | |
|---|
| 40 | // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
|---|
| 41 | |
|---|