You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
// |
|
//=============================================================================// |
|
/* |
|
* |
|
* Copyright (c) 1998-9 |
|
* Dr John Maddock |
|
* |
|
* Permission to use, copy, modify, distribute and sell this software |
|
* and its documentation for any purpose is hereby granted without fee, |
|
* provided that the above copyright notice appear in all copies and |
|
* that both that copyright notice and this permission notice appear |
|
* in supporting documentation. Dr John Maddock makes no representations |
|
* about the suitability of this software for any purpose. |
|
* It is provided "as is" without express or implied warranty. |
|
* |
|
*/ |
|
|
|
/* |
|
* FILE re_coll.h |
|
* VERSION 2.12 |
|
* This is an internal header file, do not include directly |
|
*/ |
|
|
|
#ifndef RE_COLL_H |
|
#define RE_COLL_H |
|
|
|
#ifndef JM_CFG_H |
|
#include <jm/jm_cfg.h> |
|
#endif |
|
|
|
#ifndef RE_STR_H |
|
#include <re_str.h> |
|
#endif |
|
|
|
JM_NAMESPACE(__JM) |
|
|
|
JM_IX_DECL bool RE_CALL re_lookup_def_collate_name(re_str<char>& buf, const char* name); |
|
|
|
void RE_CALL re_init_collate(); |
|
void RE_CALL re_free_collate(); |
|
void RE_CALL re_update_collate(); |
|
JM_IX_DECL bool RE_CALL __re_lookup_collate(re_str<char>& buf, const char* p); |
|
|
|
inline bool RE_CALL re_lookup_collate(re_str<char>& buf, const char* first, const char* last) |
|
{ |
|
re_str<char> s(first, last); |
|
return __re_lookup_collate(buf, s.c_str()); |
|
} |
|
|
|
#ifndef JM_NO_WCSTRING |
|
JM_IX_DECL bool RE_CALL re_lookup_collate(re_str<wchar_t>& out, const wchar_t* first, const wchar_t* last); |
|
#endif |
|
|
|
JM_END_NAMESPACE |
|
|
|
#endif
|
|
|