aboutsummaryrefslogtreecommitdiff
blob: bc1b3d537470196ed2db35aeece475639610cc4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright 2005-2019 Gentoo Foundation
 * Distributed under the terms of the GNU General Public License v2
 */

#ifndef _PROFILE_H
#define _PROFILE_H 1

typedef void *(q_profile_callback_t)(void *, char *);
void *q_profile_walk(
		const char *file, q_profile_callback_t callback,
		void *data);

#endif