1
0
Fork 0
linux/tools/perf/util/srccode.h
Daniel Baumann 79d69e5050
Adding upstream version 6.12.33.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 12:14:28 +02:00

20 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