2009-04-20 13:00:56 +00:00
|
|
|
#ifndef BUILTIN_H
|
|
|
|
#define BUILTIN_H
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "strbuf.h"
|
|
|
|
|
|
|
|
extern const char perf_version_string[];
|
|
|
|
extern const char perf_usage_string[];
|
|
|
|
extern const char perf_more_info_string[];
|
|
|
|
|
|
|
|
extern void list_common_cmds_help(void);
|
|
|
|
extern const char *help_unknown_cmd(const char *cmd);
|
|
|
|
extern void prune_packed_objects(int);
|
|
|
|
extern int read_line_with_nul(char *buf, int size, FILE *file);
|
|
|
|
extern int check_pager_config(const char *cmd);
|
|
|
|
|
2009-04-20 13:52:29 +00:00
|
|
|
extern int cmd_top(int argc, const char **argv, const char *prefix);
|
|
|
|
extern int cmd_stat(int argc, const char **argv, const char *prefix);
|
2009-04-20 13:00:56 +00:00
|
|
|
#endif
|