0

Possible Duplicate:
Determine what day of week the week starts with
How to determine which day is the first in week in current locale in C

How to get parameter which can show from what day week starts using user location date time settings? e.g. USA: the week starts with Sunday, for Russia it is Monday.

Community
  • 1
  • 1
WISEMAN
  • 87
  • 1
  • 1
  • 6

1 Answers1

0

You can obtain it using one of the following libraries:

  1. boost.locale,
  2. icu,
  3. and finally, glibc has a function for it too (but it's plain C, not C++ and not really portable).
Community
  • 1
  • 1
Michał Górny
  • 18,713
  • 5
  • 53
  • 76