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

Side by Side Diff: fusl/include/langinfo.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 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 #ifndef _LANGINFO_H 1 #ifndef _LANGINFO_H
2 #define _LANGINFO_H 2 #define _LANGINFO_H
3 3
4 #ifdef __cplusplus 4 #ifdef __cplusplus
5 extern "C" { 5 extern "C" {
6 #endif 6 #endif
7 7
8 #include <features.h> 8 #include <features.h>
9 #include <nl_types.h> 9 #include <nl_types.h>
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #define RADIXCHAR 0x10000 75 #define RADIXCHAR 0x10000
76 #define THOUSEP 0x10001 76 #define THOUSEP 0x10001
77 #define YESEXPR 0x50000 77 #define YESEXPR 0x50000
78 #define NOEXPR 0x50001 78 #define NOEXPR 0x50001
79 79
80 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) 80 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
81 #define YESSTR 0x50002 81 #define YESSTR 0x50002
82 #define NOSTR 0x50003 82 #define NOSTR 0x50003
83 #endif 83 #endif
84 84
85 char *nl_langinfo(nl_item); 85 char* nl_langinfo(nl_item);
86 char *nl_langinfo_l(nl_item, locale_t); 86 char* nl_langinfo_l(nl_item, locale_t);
87 87
88 #ifdef __cplusplus 88 #ifdef __cplusplus
89 } 89 }
90 #endif 90 #endif
91 91
92 #endif 92 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698