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.
Tomasz Sowa
84e9e6f98f
add methods to Space that take a pointer to a string along with the length
Space::Space(const char * str, size_t len)
Space::Space(const wchar_t * str, size_t len)
Space::set(const char * str, size_t len)
Space::set(const wchar_t * str, size_t len)
Space::add_to_table(const char * val, size_t len)
Space::add_to_table(const wchar_t * val, size_t len)
Space::add(const wchar_t * field, const char * val, size_t len)
Space::add(const wchar_t * field, const wchar_t * val, size_t len)
Space::add(const std::wstring & field, const char * val, size_t len)
Space::add(const std::wstring & field, const wchar_t * val, size_t len)
|
6 months ago |
src
|
add methods to Space that take a pointer to a string along with the length
|
6 months ago |
tests
|
set 2-Clause BSD licence in *.cpp files
|
7 months ago |
.editorconfig
|
added .editorconfig file with tab style and tab size information
|
2 years ago |
.gitignore
|
removed *.a from .gitignore
|
2 years ago |
LICENSE
|
add LICENSE file
|
7 months ago |
Makefile
|
fixed memory leak in CSVParser::parse() - a Space struct was allocated but never freed
|
2 years ago |