Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 6fbc7275c7a9ba97877050335f290341a1fd8dbf authored by Linus Torvalds on 30 June 2019, 03:25:36 UTC
Linux 5.2-rc7
Tip revision: 6fbc727
srccode.h
#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
back to top