ohcount
parser.h
Go to the documentation of this file.
1 // parser.h written by Mitchell Foral. mitchell<att>caladbolg.net.
2 // See COPYING for license information.
3 
4 #ifndef OHCOUNT_PARSER_H
5 #define OHCOUNT_PARSER_H
6 
7 #include "sourcefile.h"
8 
298 int ohcount_parse(SourceFile *sourcefile, int count,
299  void (*callback) (const char *, const char *, int, int,
300  void *),
301  void *userdata);
302 
303 #endif
Represents a single source code file.
Definition: structs.h:238
int ohcount_parse(SourceFile *sourcefile, int count, void(*callback)(const char *, const char *, int, int, void *), void *userdata)