Std.cppm 704 B

123456789101112131415161718192021222324252627282930313233343536
  1. module;
  2. #include <cctype>
  3. #include <clocale>
  4. #include <cmath>
  5. #include <cstdio>
  6. #include <cstdlib>
  7. #include <cstring>
  8. #include <source_location>
  9. export module Core.Std;
  10. export namespace std {
  11. using std::source_location;
  12. }
  13. export using ::fflush;
  14. export using ::fputs;
  15. export using ::free;
  16. export using ::iscntrl;
  17. export using ::memcmp;
  18. export using ::memcpy;
  19. export using ::memset;
  20. export using ::puts;
  21. export using ::setlocale;
  22. export using ::sincosf;
  23. export using ::sqrtf;
  24. export using ::stdout;
  25. export using ::strcmp;
  26. export using ::strdup;
  27. export using ::strstr;
  28. export using ::tanf;
  29. export using ::malloc;
  30. export using ::realloc;
  31. export using ::exit;
  32. export inline auto CORE_LC_ALL = LC_ALL;