Changeset 37041
- Timestamp:
- Jul 17, 2014, 10:15:28 AM (12 years ago)
- Location:
- trunk/Ohana/src/tools
- Files:
-
- 2 edited
- 1 copied
-
Makefile (modified) (1 diff)
-
src/ftable.c (modified) (1 diff)
-
src/random.c (copied) (copied from branches/eam_branches/ipp-20140610/Ohana/src/tools/src/random.c )
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/tools/Makefile
r31496 r37041 17 17 PROGRAMS = gconfig fhead ftable fields list_astro glockfile \ 18 18 radec mktemp precess csystem fits_insert \ 19 medianfilter mefhead ckfits roc 19 medianfilter mefhead ckfits roc random 20 20 21 21 all tools: $(PROGRAMS) -
trunk/Ohana/src/tools/src/ftable.c
r34260 r37041 460 460 } else { 461 461 for (j = 0; j < Nv; j++) { 462 if (!strcmp (type, "byte")) { 463 memcpy (line, &data[i*Nv*Nb + Nb*j], Nb); 464 fprintf (stdout, "%d ", *(char *)line); 465 } 466 if (!strcmp (type, "short")) { 467 memcpy (line, &data[i*Nv*Nb + Nb*j], Nb); 468 fprintf (stdout, "%d ", *(short *)line); 469 } 462 470 if (!strcmp (type, "int")) { 463 471 memcpy (line, &data[i*Nv*Nb + Nb*j], Nb);
Note:
See TracChangeset
for help on using the changeset viewer.
