Skip to content

Commit

Permalink
debug1
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Apr 21, 2024
1 parent 8f65690 commit 157ab3a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 756 deletions.
6 changes: 3 additions & 3 deletions nczarr_test/test_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ int
getoptions(int* argcp, char*** argvp)
{
int ret = NC_NOERR;
int c;
size_t i;
int c;
const char* p;

/* initialize */
Expand Down Expand Up @@ -389,12 +389,12 @@ parsevector(const char* s0, size_t* vec)
return i;
}

int
size_t
parsedata(const char* s0, int* data)
{
char* s = strdup(s0);
char* p = NULL;
int i, done;
size_t i, done;


if(s0 == NULL || data == NULL) abort();
Expand Down
2 changes: 1 addition & 1 deletion nczarr_test/test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ EXTERNL const char* odom_print(Odometer* odom);
EXTERNL const char* odom_printshort(Odometer* odom);

EXTERNL size_t parsevector(const char* s0, size_t* vec);
EXTERNL int parsedata(const char* s0, int* data);
EXTERNL size_t parsedata(const char* s0, int* data);
EXTERNL const char* filenamefor(const char* f0);
EXTERNL const char* printvector(size_t rank, const size_t* vec);
EXTERNL const char* printvector64(size_t rank, const size64_t* vec);
Expand Down
Loading

0 comments on commit 157ab3a

Please sign in to comment.