1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-08-25 05:55:31 +03:00
eda-tools/eeshow/git-file.h
Werner Almesberger 86feabf49c sch2fig/git-file.c, git-file.h: start our git_* identifiers with vcs_git_
Since we'll use this name space more intensely, we don't want to risk
clashes
2016-08-02 14:49:54 -03:00

23 lines
621 B
C

/*
* git-file.h - Open and read a file from git version control system
*
* Written 2016 by Werner Almesberger
* Copyright 2016 by Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef GIT_FILE_H
#define GIT_FILE_H
#include <stdbool.h>
void vcs_git_read(const char *revision, const char *name,
bool (*parse)(void *user, const char *line), void *user);
#endif /* !GIT_FILE_H */