commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
21 lines
371 B
C
21 lines
371 B
C
#ifndef SRCCODE_H
|
|
#define SRCCODE_H 1
|
|
|
|
struct srccode_state {
|
|
char *srcfile;
|
|
unsigned line;
|
|
};
|
|
|
|
static inline void srccode_state_init(struct srccode_state *state)
|
|
{
|
|
state->srcfile = NULL;
|
|
state->line = 0;
|
|
}
|
|
|
|
void srccode_state_free(struct srccode_state *state);
|
|
|
|
/* Result is not 0 terminated */
|
|
char *find_sourceline(char *fn, unsigned line, int *lenp);
|
|
|
|
#endif
|