ep/ep.h

22 lines
414 B
C
Raw Normal View History

2021-02-21 22:43:22 -06:00
#ifndef EP_H
#define EP_H
#include <stdio.h>
/* from out.c */
extern FILE *out, *outerr;
enum log_level_value { DEBUG, INFO, WARN, ERROR };
extern const enum log_level_value log_level;
void p(const char *);
void e(enum log_level_value, const char *, int);
/* from path.c */
extern const int fish_style_dir;
void print_pwd(const char *);
2021-02-21 22:43:22 -06:00
/* from git.c */
void *git_thread(void *);
void print_git(void);
#endif