Restructure repository to include all source folders

Move git root from Client/ to src/ to track all source code:
- Client: Game client source (moved to Client/Client/)
- Server: Game server source
- GameTools: Development tools
- CryptoSource: Encryption utilities
- database: Database scripts
- Script: Game scripts
- rylCoder_16.02.2008_src: Legacy coder tools
- GMFont, Game: Additional resources

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 20:17:20 +09:00
parent 5d3cd64a25
commit dd97ddec92
11602 changed files with 1446576 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
/**
* @file NFStringCompare.h
* @brief <09><><EFBFBD>ڿ<EFBFBD> Compare Ŭ<><C5AC><EFBFBD><EFBFBD>
* @remarks
* @author <09><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(edith2580@gmail.com)
* @date 2009-04-02
*/
#pragma once
namespace Nave {
template <typename fc> inline BOOL Compare(fc i1,const fc& iend1,fc i2,const fc& iend2) {
for (;(i1 != iend1) && ( i2 != iend2); ++i1, ++i2) {
if ((*i1) != (*i2)) return FALSE;
}
if ( (i1 == iend1) && ( i2 == iend2)) return TRUE;
return FALSE;
}
template <typename fc> inline BOOL Compare(std::pair<fc,fc>& a, std::pair<fc,fc>& b) {
Compare(a.first,a.second,b.first,b.second);
}
inline BOOL Compare(std::string::const_iterator i1,const std::string::const_iterator& iend1, const char* i2) {
for (;(i1 != iend1) && ( *i2 != 0); ++i1, ++i2) {
if ((*i1) != (*i2)) return FALSE;
}
if ( (i1 == iend1) && ( *i2 == 0)) return TRUE;
return FALSE;
}
inline BOOL Compare(std::wstring::const_iterator i1,const std::wstring::const_iterator& iend1, const wchar_t* i2) {
for (;(i1 != iend1) && ( *i2 != 0); ++i1, ++i2) {
if ((*i1) != (*i2)) return FALSE;
}
if ( (i1 == iend1) && ( *i2 == 0)) return TRUE;
return FALSE;
}
inline BOOL Compare(const std::pair<std::string::const_iterator,std::string::const_iterator>& a, const char* b) {
return Compare(a.first,a.second,b);
}
}