https://github.com/git/git
Revision d78b7eb2d50bd1cf57d7f06c1b4bdd8e08057926 authored by Junio C Hamano on 22 March 2018, 21:24:12 UTC, committed by Junio C Hamano on 22 March 2018, 21:24:12 UTC
Plug recently introduced leaks in fsck.

* jt/fsck-code-cleanup:
  fsck: fix leak when traversing trees
2 parent s 34b9ec8 + ba3a08c
Raw File
Tip revision: d78b7eb2d50bd1cf57d7f06c1b4bdd8e08057926 authored by Junio C Hamano on 22 March 2018, 21:24:12 UTC
Merge branch 'jt/fsck-code-cleanup' into maint
Tip revision: d78b7eb
prompt.h
#ifndef PROMPT_H
#define PROMPT_H

#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO    (1<<1)

char *git_prompt(const char *prompt, int flags);

#endif /* PROMPT_H */
back to top