From 06d8f16b87208abc6dfde1341e992e0811c31fda Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Tue, 23 Oct 2018 10:02:24 +0200 Subject: headers: end all headers with guard comment Most headerfiles end with a /* */ comment, but it was missing from some. The comment isn't the most important part of our code documentation but consistency has an intrinsic value in itself. This adds header guard comments to the files that were lacking it. Closes #3158 Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg --- lib/urlapi-int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/urlapi-int.h') diff --git a/lib/urlapi-int.h b/lib/urlapi-int.h index a5bb8ea0b..a57d2e22b 100644 --- a/lib/urlapi-int.h +++ b/lib/urlapi-int.h @@ -30,4 +30,4 @@ bool Curl_is_absolute_url(const char *url, char *scheme, size_t buflen); char *Curl_concat_url(const char *base, const char *relurl); size_t Curl_strlen_url(const char *url, bool relative); void Curl_strcpy_url(char *output, const char *url, bool relative); -#endif +#endif /* HEADER_CURL_URLAPI_INT_H */ -- cgit v1.2.1