Initial snark14m import
[snark14.git] / src / snark / errorc.h
1 /*
2  ***********************************************************
3  $SNARK_Header: S N A R K  1 4 - A PICTURE RECONSTRUCTION PROGRAM $
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/errorc.h $
5  $LastChangedRevision: 85 $
6  $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9  */
10
11 #ifndef ERRORC_H
12 #define ERRORC_H
13
14 void errorc(char* str1, char* str2);
15
16 //bug 269 - jklukowska
17 //returns 1 if the line should be skipped (because it is blank
18 //or starts with a * - comment line), otherwise returns 0
19 int isSkip(char * line);
20 //returns 1 if the line should be skipped (because it is blank)
21 int isBlank(char * line);
22 //returns 1 if the line  is a comment
23 int isComment(char * line);
24 //returns 1 if the line is a valid line following the dummy structure
25 int isValidObject(char * line);
26 #endif