aboutsummaryrefslogtreecommitdiff
path: root/lib/urlapi-int.h
diff options
context:
space:
mode:
authorDaniel Gustafsson <daniel@yesql.se>2018-10-23 10:02:24 +0200
committerDaniel Gustafsson <daniel@yesql.se>2018-10-23 10:02:24 +0200
commit06d8f16b87208abc6dfde1341e992e0811c31fda (patch)
tree2b42cdc6218f1439a5221f730f6c5f24e9d9ebff /lib/urlapi-int.h
parenta023dfa19abd581f9645d218519ec8843564eb47 (diff)
headers: end all headers with guard comment
Most headerfiles end with a /* <headerguard> */ 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 <raysatiro@yahoo.com> Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'lib/urlapi-int.h')
-rw-r--r--lib/urlapi-int.h2
1 files changed, 1 insertions, 1 deletions
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 */