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

Side by Side Diff: fusl/src/locale/c_locale.c

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 #include "locale_impl.h" 1 #include "locale_impl.h"
2 #include <stdint.h> 2 #include <stdint.h>
3 3
4 static const uint32_t empty_mo[] = { 0x950412de, 0, -1, -1, -1 }; 4 static const uint32_t empty_mo[] = {0x950412de, 0, -1, -1, -1};
5 5
6 const struct __locale_map __c_dot_utf8 = { 6 const struct __locale_map __c_dot_utf8 = {.map = empty_mo,
7 » .map = empty_mo, 7 .map_size = sizeof empty_mo,
8 » .map_size = sizeof empty_mo, 8 .name = "C.UTF-8"};
9 » .name = "C.UTF-8"
10 };
11 9
12 const struct __locale_struct __c_locale = { 0 }; 10 const struct __locale_struct __c_locale = {0};
13 const struct __locale_struct __c_dot_utf8_locale = { 11 const struct __locale_struct __c_dot_utf8_locale = {.cat[LC_CTYPE] =
14 » .cat[LC_CTYPE] = &__c_dot_utf8 12 &__c_dot_utf8};
15 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698