mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
13 lines
266 B
C++
13 lines
266 B
C++
#ifndef _src_CSV_csv_h_
|
|
#define _src_CSV_csv_h_
|
|
|
|
#include <Core/Core.h>
|
|
#include <MySupport/support.h>
|
|
|
|
using namespace Upp;
|
|
|
|
Vector<Value> CSVStringToToken(const String &s);
|
|
String CSVDequote(const String &s);
|
|
String CSVQuote(const String &s);
|
|
|
|
#endif
|