Commit ec691ca3 authored by Yang Tse's avatar Yang Tse
Browse files

lib/*.h: use our standard naming scheme for header inclusion guards

parent 709b3506
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
#ifndef __AXTLS_H
#define __AXTLS_H
#ifndef HEADER_CURL_AXTLS_H
#define HEADER_CURL_AXTLS_H
/***************************************************************************
 *                                  _   _ ____  _
 *  Project                     ___| | | |  _ \| |
@@ -59,4 +59,5 @@ int Curl_axtls_check_cxn(struct connectdata *conn);
#define curlssl_data_pending(x,y) (x=x, y=y, 0)

#endif /* USE_AXTLS */
#endif
#endif /* HEADER_CURL_AXTLS_H */
+4 −3
Original line number Diff line number Diff line
#ifndef __BUNDLES_H
#define __BUNDLES_H
#ifndef HEADER_CURL_BUNDLES_H
#define HEADER_CURL_BUNDLES_H
/***************************************************************************
 *                                  _   _ ____  _
 *  Project                     ___| | | |  _ \| |
@@ -41,4 +41,5 @@ int Curl_bundle_remove_conn(struct connectbundle *cb_ptr,
                            struct connectdata *conn);


#endif /* __BUNDLES_H */
#endif /* HEADER_CURL_BUNDLES_H */
+3 −3
Original line number Diff line number Diff line
#ifndef HEADER_CONFIG_DOS_H
#define HEADER_CONFIG_DOS_H
#ifndef HEADER_CURL_CONFIG_DOS_H
#define HEADER_CURL_CONFIG_DOS_H
/***************************************************************************
 *                                  _   _ ____  _
 *  Project                     ___| | | |  _ \| |
@@ -188,5 +188,5 @@
#undef word
#undef byte

#endif /* HEADER_CONFIG_DOS_H */
#endif /* HEADER_CURL_CONFIG_DOS_H */
+4 −3
Original line number Diff line number Diff line
#ifndef HEADER_CONFIG_VMS_H
#define HEADER_CONFIG_VMS_H
#ifndef HEADER_CURL_CONFIG_VMS_H
#define HEADER_CURL_CONFIG_VMS_H
/***************************************************************************
 *                                  _   _ ____  _
 *  Project                     ___| | | |  _ \| |
@@ -395,4 +395,5 @@
/* Define to hide dollar sign from compilers in strict ansi mode. */
#define decc_translate_vms(__s) decc$translate_vms(__s)

#endif /* HEADER_CONFIG_VMS_H */
#endif /* HEADER_CURL_CONFIG_VMS_H */
+4 −4
Original line number Diff line number Diff line
#ifndef __CURL_LDAP_H
#define __CURL_LDAP_H

#ifndef HEADER_CURL_LDAP_H
#define HEADER_CURL_LDAP_H
/***************************************************************************
 *                                  _   _ ____  _
 *  Project                     ___| | | |  _ \| |
@@ -32,4 +31,5 @@ extern const struct Curl_handler Curl_handler_ldaps;
#endif

#endif
#endif /* __CURL_LDAP_H */
#endif /* HEADER_CURL_LDAP_H */
Loading