From 6a1964c22a2655a4c995d9a8bbf25512b1a2bc16 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Mon, 18 May 2026 21:19:01 -0400 Subject: [PATCH] quote.h: bump strvec forward declaration to the top We usually put forward declarations at the top of header files, rather than next to the functions that need them. In theory placing it next to the function has some explanatory value, but it's also just as likely to become stale if other uses are added. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- quote.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quote.h b/quote.h index 0300c29104..400397b11a 100644 --- a/quote.h +++ b/quote.h @@ -2,6 +2,7 @@ #define QUOTE_H struct strbuf; +struct strvec; extern int quote_path_fully; @@ -77,7 +78,6 @@ int sq_dequote_to_argv(char *arg, const char ***argv, int *nr, int *alloc); * still modify arg in place, but unlike sq_dequote_to_argv, the strvec * will duplicate and take ownership of the strings. */ -struct strvec; int sq_dequote_to_strvec(char *arg, struct strvec *); int unquote_c_style(struct strbuf *, const char *quoted, const char **endp); -- 2.52.0