From 013c53e5b94202b74f492c439d71eb02b2ceed23 Mon Sep 17 00:00:00 2001 From: John Cage <58808125+coshcage@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:05:46 +0000 Subject: [PATCH] Add files via upload --- Samples/exp_2023-07-08_1.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Samples/exp_2023-07-08_1.c b/Samples/exp_2023-07-08_1.c index b6d4aa1..8545010 100644 --- a/Samples/exp_2023-07-08_1.c +++ b/Samples/exp_2023-07-08_1.c @@ -9,17 +9,6 @@ #include "svimrdb.h" #include "sixmem.h" -void PrintMatrix(P_MATRIX pmtx) -{ - size_t i, j; - for (i = 0; i < pmtx->ln; ++i) - { - for (j = 0; j < pmtx->col; ++j) - printf("%p ", *(P_CELL *)strGetValueMatrix(NULL, pmtx, i, j, sizeof(P_CELL))); - printf("\n"); - } -} - int main() { P_MATRIX pv; @@ -103,8 +92,6 @@ int main() pv = siCreateViewOfTable(ptbl); - //PrintMatrix(pv); - siPrintView(pv); strDeleteMatrix(pv);