Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
coshcage authored Apr 18, 2024
1 parent ffb9f58 commit 013c53e
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Samples/exp_2023-07-08_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -103,8 +92,6 @@ int main()

pv = siCreateViewOfTable(ptbl);

//PrintMatrix(pv);

siPrintView(pv);

strDeleteMatrix(pv);
Expand Down

0 comments on commit 013c53e

Please sign in to comment.