| 26 | #include "tableprint.h" |
| 27 | |
| 28 | void write_float_3d_array (const void *p, int b, int c, int d) |
| 29 | { |
| 30 | int i; |
| 31 | const float *f = p; |
| 32 | for (i = 0; i < b; i++) { |
| 33 | printf("{\n"); |
| 34 | write_float_2d_array(f, c, d); |
| 35 | printf("},\n"); |
| 36 | f += c * d; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | void write_float_4d_array (const void *p, int a, int b, int c, int d) |
| 41 | { |
no outgoing calls
no test coverage detected