#define PROG_NAME "test_jsdebug" #define PROG_DESC "test of {jsmath.h}" #define PROG_VERS "1.0" /* Last edited on 2024-11-16 10:33:44 by stolfi */ /* Created on 2011-09-20 by J. Stolfi, UNICAMP */ #define test_jsdebug_COPYRIGHT \ "Copyright © 2011 by the State University of Campinas (UNICAMP)" #include #include #include #include #include #include #include #include #include #include #include #include int32_t main (int32_t argn, char **argv) { fprintf(stderr, " sizeof(string_t) = %lu\n", sizeof(string_t)); uint32_t nm = 50; string_t mat[nm]; jsdebug_addr_span("mat", &(mat[0]), &(mat[nm]), nm); return 0; }