Browse Source

copy.h: move declarations for copy.c functions from cache.h

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
main
Elijah Newren 1 year ago committed by Junio C Hamano
parent
commit
d5fff46f40
  1. 1
      builtin/bisect.c
  2. 1
      builtin/clone.c
  3. 1
      builtin/difftool.c
  4. 1
      builtin/init-db.c
  5. 1
      builtin/worktree.c
  6. 1
      bundle-uri.c
  7. 6
      cache.h
  8. 1
      convert.c
  9. 1
      copy.c
  10. 10
      copy.h
  11. 1
      pkt-line.c
  12. 1
      refs/files-backend.c
  13. 1
      rerere.c
  14. 1
      sequencer.c

1
builtin/bisect.c

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
#include "builtin.h"
#include "cache.h"
#include "copy.h"
#include "environment.h"
#include "gettext.h"
#include "hex.h"

1
builtin/clone.c

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
#include "abspath.h"
#include "advice.h"
#include "config.h"
#include "copy.h"
#include "environment.h"
#include "gettext.h"
#include "hex.h"

1
builtin/difftool.c

@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
#include "cache.h"
#include "abspath.h"
#include "config.h"
#include "copy.h"
#include "builtin.h"
#include "run-command.h"
#include "environment.h"

1
builtin/init-db.c

@ -6,6 +6,7 @@ @@ -6,6 +6,7 @@
#include "cache.h"
#include "abspath.h"
#include "config.h"
#include "copy.h"
#include "environment.h"
#include "gettext.h"
#include "refs.h"

1
builtin/worktree.c

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
#include "abspath.h"
#include "checkout.h"
#include "config.h"
#include "copy.h"
#include "builtin.h"
#include "dir.h"
#include "environment.h"

1
bundle-uri.c

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#include "cache.h"
#include "bundle-uri.h"
#include "bundle.h"
#include "copy.h"
#include "environment.h"
#include "gettext.h"
#include "object-store.h"

6
cache.h

@ -593,12 +593,6 @@ int df_name_compare(const char *name1, size_t len1, int mode1, @@ -593,12 +593,6 @@ int df_name_compare(const char *name1, size_t len1, int mode1,
int name_compare(const char *name1, size_t len1, const char *name2, size_t len2);
int cache_name_stage_compare(const char *name1, int len1, int stage1, const char *name2, int len2, int stage2);

#define COPY_READ_ERROR (-2)
#define COPY_WRITE_ERROR (-3)
int copy_fd(int ifd, int ofd);
int copy_file(const char *dst, const char *src, int mode);
int copy_file_with_time(const char *dst, const char *src, int mode);

/* base85 */
int decode_85(char *dst, const char *line, int linelen);
void encode_85(char *buf, const unsigned char *data, int bytes);

1
convert.c

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
#include "advice.h"
#include "config.h"
#include "convert.h"
#include "copy.h"
#include "gettext.h"
#include "hex.h"
#include "object-store.h"

1
copy.c

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
#include "cache.h"
#include "copy.h"
#include "wrapper.h"

int copy_fd(int ifd, int ofd)

10
copy.h

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
#ifndef COPY_H
#define COPY_H

#define COPY_READ_ERROR (-2)
#define COPY_WRITE_ERROR (-3)
int copy_fd(int ifd, int ofd);
int copy_file(const char *dst, const char *src, int mode);
int copy_file_with_time(const char *dst, const char *src, int mode);

#endif /* COPY_H */

1
pkt-line.c

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
#include "cache.h"
#include "copy.h"
#include "pkt-line.h"
#include "gettext.h"
#include "hex.h"

1
refs/files-backend.c

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
#include "../cache.h"
#include "../config.h"
#include "../copy.h"
#include "../environment.h"
#include "../gettext.h"
#include "../hex.h"

1
rerere.c

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@
#include "abspath.h"
#include "alloc.h"
#include "config.h"
#include "copy.h"
#include "gettext.h"
#include "hex.h"
#include "lockfile.h"

1
sequencer.c

@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
#include "advice.h"
#include "alloc.h"
#include "config.h"
#include "copy.h"
#include "environment.h"
#include "gettext.h"
#include "hex.h"

Loading…
Cancel
Save