OSDN Git Service

Add Expand Different Subfolders menu item (#1964)
[winmerge-jp/winmerge-jp.git] / Src / locality.h
1 /** 
2  * @file  locality.h
3  *
4  * @brief Declaration of helper functions involving locale
5  */
6 #pragma once
7
8 #include "UnicodeString.h"
9
10 namespace locality {
11
12 String NumToLocaleStr(int n);
13 String NumToLocaleStr(int64_t n);
14 String GetLocaleStr(const tchar_t *str, int decimalDigits = 0);
15 String TimeString(const int64_t * tim);
16
17 };