IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 17, 2005, 8:31:50 AM (21 years ago)
Author:
eugene
Message:

added tagging script, other minor cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/cmd.data/kern.c

    r2598 r3261  
    11# include "data.h"
    22
     3/** need to allow larger kernels (5x5, 7x7, etc) **/
    34int kern (int argc, char **argv) {
    45
     
    4041    /* file */
    4142    f = fopen (argv[2], "r");
     43    if (f == NULL) {
     44      fprintf (stderr, "file not found: %s\n", argv[2]);
     45      return (FALSE);
     46    }
    4247    for (i = 0; i < 3; i++) {
    4348      status = scan_line (f, line);
Note: See TracChangeset for help on using the changeset viewer.