Revision 650c90a18506ce05e2be349d83fe1cef3dc7f8cb authored by Junio C Hamano on 14 March 2014, 21:25:31 UTC, committed by Junio C Hamano on 14 March 2014, 21:25:31 UTC
We started using wildmatch() in place of fnmatch(3); complete the
process and stop using fnmatch(3).

* nd/no-more-fnmatch:
  actually remove compat fnmatch source code
  stop using fnmatch (either native or compat)
  Revert "test-wildmatch: add "perf" command to compare wildmatch and fnmatch"
  use wildmatch() directly without fnmatch() wrapper
2 parent s 3a66e1b + 2c0a1bd
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

#include "git-compat-util.h"

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top