Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: third_party/expat/files/lib/internal.h

Issue 2761253002: Update expat to 2.2.0 to fix CVE vulnerability. (Closed)
Patch Set: update README.chromium Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* internal.h 1 /* internal.h
2 2
3 Internal definitions used by Expat. This is not needed to compile 3 Internal definitions used by Expat. This is not needed to compile
4 client code. 4 client code.
5 5
6 The following calling convention macros are defined for frequently 6 The following calling convention macros are defined for frequently
7 called functions: 7 called functions:
8 8
9 FASTCALL - Used for those internal functions that have a simple 9 FASTCALL - Used for those internal functions that have a simple
10 body and a low number of arguments and local variables. 10 body and a low number of arguments and local variables.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #endif 64 #endif
65 #endif /* XML_MIN_SIZE */ 65 #endif /* XML_MIN_SIZE */
66 66
67 #ifdef __cplusplus 67 #ifdef __cplusplus
68 #define inline inline 68 #define inline inline
69 #else 69 #else
70 #ifndef inline 70 #ifndef inline
71 #define inline 71 #define inline
72 #endif 72 #endif
73 #endif 73 #endif
74
75 #ifndef UNUSED_P
76 # ifdef __GNUC__
77 # define UNUSED_P(p) UNUSED_ ## p __attribute__((__unused__))
78 # else
79 # define UNUSED_P(p) UNUSED_ ## p
80 # endif
81 #endif
82
83
84 #ifdef __cplusplus
85 extern "C" {
86 #endif
87
88
89 void
90 align_limit_to_full_utf8_characters(const char * from, const char ** fromLimRef) ;
91
92
93 #ifdef __cplusplus
94 }
95 #endif
OLDNEW
« no previous file with comments | « third_party/expat/files/lib/expat_external.h.original ('k') | third_party/expat/files/lib/libexpat.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698