mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
[MSVCRT] make some functions static
This commit is contained in:
parent
281389b7e7
commit
2c4c25e468
1 changed files with 4 additions and 4 deletions
|
@ -96,7 +96,7 @@ typedef struct __crt_locale_data_public
|
||||||
unsigned int _locale_lc_codepage;
|
unsigned int _locale_lc_codepage;
|
||||||
} __crt_locale_data_public;
|
} __crt_locale_data_public;
|
||||||
|
|
||||||
__inline
|
static
|
||||||
__crt_locale_data_public*
|
__crt_locale_data_public*
|
||||||
__CRTDECL
|
__CRTDECL
|
||||||
__acrt_get_locale_data_prefix(
|
__acrt_get_locale_data_prefix(
|
||||||
|
@ -106,7 +106,7 @@ __acrt_get_locale_data_prefix(
|
||||||
return (__crt_locale_data_public*)_TypedLocalePointers->locinfo;
|
return (__crt_locale_data_public*)_TypedLocalePointers->locinfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
__inline
|
static
|
||||||
int
|
int
|
||||||
__CRTDECL
|
__CRTDECL
|
||||||
__acrt_locale_get_ctype_array_value(
|
__acrt_locale_get_ctype_array_value(
|
||||||
|
@ -137,7 +137,7 @@ const unsigned short* __cdecl __pctype_func(void);
|
||||||
#define __chvalidchk(a, b) (__acrt_locale_get_ctype_array_value(__PCTYPE_FUNC, (a), (b)))
|
#define __chvalidchk(a, b) (__acrt_locale_get_ctype_array_value(__PCTYPE_FUNC, (a), (b)))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__inline
|
static
|
||||||
int
|
int
|
||||||
__CRTDECL
|
__CRTDECL
|
||||||
_chvalidchk_l(
|
_chvalidchk_l(
|
||||||
|
@ -158,7 +158,7 @@ _chvalidchk_l(
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
__inline
|
static
|
||||||
int
|
int
|
||||||
__CRTDECL
|
__CRTDECL
|
||||||
_ischartype_l(
|
_ischartype_l(
|
||||||
|
|
Loading…
Reference in a new issue