| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- module;
- #include <cctype>
- #include <clocale>
- #include <cmath>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <source_location>
- export module Core.Std;
- // NOLINTBEGIN(misc-unused-using-decls)
- export namespace std {
- using std::source_location;
- }
- export using ::exit;
- export using ::fflush;
- export using ::fputs;
- export using ::free;
- export using ::iscntrl;
- export using ::malloc;
- export using ::memcmp;
- export using ::memcpy;
- export using ::memset;
- export using ::putchar;
- export using ::puts;
- export using ::realloc;
- export using ::sincosf;
- export using ::sqrtf;
- export using ::stdout;
- export using ::strcmp;
- export using ::strdup;
- export using ::strstr;
- export using ::tanf;
- // NOLINTEND(misc-unused-using-decls)
- export void setDefaultLocal() noexcept;
- void setDefaultLocal() noexcept {
- setlocale(LC_ALL, "en_US.utf8");
- }
|