mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-29 18:27:40 +02:00
Add initial support for weekday formatting
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
|
||||
#include <cstdarg>
|
||||
#include <cstdio>
|
||||
#include <locale>
|
||||
#include <string>
|
||||
|
||||
#include "fmt/os.h"
|
||||
@ -75,3 +76,6 @@ class date {
|
||||
int month() const { return month_; }
|
||||
int day() const { return day_; }
|
||||
};
|
||||
|
||||
// Returns a locale with the given name if available or classic locale othewise.
|
||||
std::locale get_locale(const char* name);
|
||||
|
Reference in New Issue
Block a user