🐐 GOAT Shell
Current path:
opt
/
alt
/
libicu65
/
usr
/
include
/
unicode
/
👤 Create WP Admin
⬆️
Go up: include
✏️ Editing: stringpiece.h
// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html // Copyright (C) 2009-2013, International Business Machines // Corporation and others. All Rights Reserved. // // Copyright 2001 and onwards Google Inc. // Author: Sanjay Ghemawat // This code is a contribution of Google code, and the style used here is // a compromise between the original Google code and the ICU coding guidelines. // For example, data types are ICU-ified (size_t,int->int32_t), // and API comments doxygen-ified, but function names and behavior are // as in the original, if possible. // Assertion-style error handling, not available in ICU, was changed to // parameter "pinning" similar to UnicodeString. // // In addition, this is only a partial port of the original Google code, // limited to what was needed so far. The (nearly) complete original code // is in the ICU svn repository at icuhtml/trunk/design/strings/contrib // (see ICU ticket 6765, r25517). #ifndef __STRINGPIECE_H__ #define __STRINGPIECE_H__ /** * \file * \brief C++ API: StringPiece: Read-only byte string wrapper class. */ #include "unicode/utypes.h" #if U_SHOW_CPLUSPLUS_API #include <cstddef> #include <type_traits> #include "unicode/uobject.h" #include "unicode/std_string.h" // Arghh! I wish C++ literals were "string". U_NAMESPACE_BEGIN /** * A string-like object that points to a sized piece of memory. * * We provide non-explicit singleton constructors so users can pass * in a "const char*" or a "string" wherever a "StringPiece" is * expected. * * Functions or methods may use StringPiece parameters to accept either a * "const char*" or a "string" value that will be implicitly converted to a * StringPiece. * * Systematic usage of StringPiece is encouraged as it will reduce unnecessary * conversions from "const char*" to "string" and back again. * * @stable ICU 4.2 */ class U_COMMON_API StringPiece : public UMemory { private: const char* ptr_; int32_t length_; public: /** * Default constructor, creates an empty StringPiece. * @stable ICU 4.2 */ StringPiece() : ptr_(NULL), length_(0) { } /** * Constructs from a NUL-terminated const char * pointer. * @param str a NUL-terminated const char * pointer * @stable ICU 4.2 */ StringPiece(const char* str); /** * Constructs from a std::string. * @stable ICU 4.2 */ StringPiece(const std::string& str) : ptr_(str.data()), length_(static_cast<int32_t>(str.size())) { } #ifndef U_HIDE_DRAFT_API /** * Constructs from some other implementation of a string piece class, from any * C++ record type that has these two methods: * * \code{.cpp} * * struct OtherStringPieceClass { * const char* data(); * size_t size(); * }; * * \endcode * * The other string piece class will typically be std::string_view from C++17 * or absl::string_view from Abseil. * * @param str the other string piece * @draft ICU 65 */ template <typename T, typename = typename std::enable_if< std::is_same<decltype(T().data()), const char*>::value && std::is_same<decltype(T().size()), size_t>::value>::type> StringPiece(T str) : ptr_(str.data()), length_(static_cast<int32_t>(str.size())) {} #endif // U_HIDE_DRAFT_API /** * Constructs from a const char * pointer and a specified length. * @param offset a const char * pointer (need not be terminated) * @param len the length of the string; must be non-negative * @stable ICU 4.2 */ StringPiece(const char* offset, int32_t len) : ptr_(offset), length_(len) { } /** * Substring of another StringPiece. * @param x the other StringPiece * @param pos start position in x; must be non-negative and <= x.length(). * @stable ICU 4.2 */ StringPiece(const StringPiece& x, int32_t pos); /** * Substring of another StringPiece. * @param x the other StringPiece * @param pos start position in x; must be non-negative and <= x.length(). * @param len length of the substring; * must be non-negative and will be pinned to at most x.length() - pos. * @stable ICU 4.2 */ StringPiece(const StringPiece& x, int32_t pos, int32_t len); /** * Returns the string pointer. May be NULL if it is empty. * * data() may return a pointer to a buffer with embedded NULs, and the * returned buffer may or may not be null terminated. Therefore it is * typically a mistake to pass data() to a routine that expects a NUL * terminated string. * @return the string pointer * @stable ICU 4.2 */ const char* data() const { return ptr_; } /** * Returns the string length. Same as length(). * @return the string length * @stable ICU 4.2 */ int32_t size() const { return length_; } /** * Returns the string length. Same as size(). * @return the string length * @stable ICU 4.2 */ int32_t length() const { return length_; } /** * Returns whether the string is empty. * @return TRUE if the string is empty * @stable ICU 4.2 */ UBool empty() const { return length_ == 0; } /** * Sets to an empty string. * @stable ICU 4.2 */ void clear() { ptr_ = NULL; length_ = 0; } /** * Reset the stringpiece to refer to new data. * @param xdata pointer the new string data. Need not be nul terminated. * @param len the length of the new data * @stable ICU 4.8 */ void set(const char* xdata, int32_t len) { ptr_ = xdata; length_ = len; } /** * Reset the stringpiece to refer to new data. * @param str a pointer to a NUL-terminated string. * @stable ICU 4.8 */ void set(const char* str); /** * Removes the first n string units. * @param n prefix length, must be non-negative and <=length() * @stable ICU 4.2 */ void remove_prefix(int32_t n) { if (n >= 0) { if (n > length_) { n = length_; } ptr_ += n; length_ -= n; } } /** * Removes the last n string units. * @param n suffix length, must be non-negative and <=length() * @stable ICU 4.2 */ void remove_suffix(int32_t n) { if (n >= 0) { if (n <= length_) { length_ -= n; } else { length_ = 0; } } } /** * Maximum integer, used as a default value for substring methods. * @stable ICU 4.2 */ static const int32_t npos; // = 0x7fffffff; /** * Returns a substring of this StringPiece. * @param pos start position; must be non-negative and <= length(). * @param len length of the substring; * must be non-negative and will be pinned to at most length() - pos. * @return the substring StringPiece * @stable ICU 4.2 */ StringPiece substr(int32_t pos, int32_t len = npos) const { return StringPiece(*this, pos, len); } }; /** * Global operator == for StringPiece * @param x The first StringPiece to compare. * @param y The second StringPiece to compare. * @return TRUE if the string data is equal * @stable ICU 4.8 */ U_EXPORT UBool U_EXPORT2 operator==(const StringPiece& x, const StringPiece& y); /** * Global operator != for StringPiece * @param x The first StringPiece to compare. * @param y The second StringPiece to compare. * @return TRUE if the string data is not equal * @stable ICU 4.8 */ inline UBool operator!=(const StringPiece& x, const StringPiece& y) { return !(x == y); } U_NAMESPACE_END #endif /* U_SHOW_CPLUSPLUS_API */ #endif // __STRINGPIECE_H__
Save
📄
alphaindex.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
appendable.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
basictz.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
brkiter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytestream.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytestrie.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytestriebuilder.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
calendar.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
caniter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
casemap.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
char16ptr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
chariter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
choicfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
coleitr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
coll.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
compactdecimalformat.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
curramt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
currpinf.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
currunit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
datefmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dbbi.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dcfmtsym.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
decimfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
docmain.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtfmtsym.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtintrv.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtitvfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtitvinf.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtptngen.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtrule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
edits.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
enumset.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
errorcode.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
fieldpos.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
filteredbrk.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
fmtable.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
format.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
formattedvalue.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
fpositer.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
gender.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
gregocal.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
icudataver.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
icuplug.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
idna.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
listformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
localebuilder.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
localematcher.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
localpointer.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
locdspnm.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
locid.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
measfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
measunit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
measure.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
messagepattern.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
msgfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
normalizer2.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
normlzr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
nounit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
numberformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
numberrangeformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
numfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
numsys.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
parseerr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
parsepos.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
platform.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
plurfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
plurrule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ptypes.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
putil.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
rbbi.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
rbnf.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
rbtz.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
regex.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
region.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
reldatefmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
rep.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
resbund.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
schriter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
scientificnumberformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
search.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
selfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
simpleformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
simpletz.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
smpdtfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
sortkey.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
std_string.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
strenum.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
stringoptions.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
stringpiece.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
stringtriebuilder.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
stsearch.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
symtable.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tblcoll.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
timezone.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tmunit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tmutamt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tmutfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
translit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tzfmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tznames.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tzrule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tztrans.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ubidi.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ubiditransform.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ubrk.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucal.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucasemap.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucat.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uchar.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucharstrie.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucharstriebuilder.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uchriter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uclean.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucnv.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucnvsel.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucnv_cb.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucnv_err.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucol.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucoleitr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uconfig.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucpmap.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucptrie.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucsdet.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucurr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
udat.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
udata.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
udateintervalformat.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
udatpg.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
udisplaycontext.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uenum.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ufieldpositer.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uformattable.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uformattedvalue.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ugender.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uidna.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uiter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uldnames.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ulistformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uloc.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ulocdata.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
umachine.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
umisc.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
umsg.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
umutablecptrie.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unifilt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unifunct.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unimatch.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unirepl.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uniset.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unistr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unorm.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unorm2.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unum.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unumberformatter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unumsys.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
upluralrules.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uregex.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uregion.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ureldatefmt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
urename.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
urep.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ures.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uscript.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
usearch.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uset.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
usetiter.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ushape.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uspoof.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
usprep.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ustdio.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ustream.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ustring.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ustringtrie.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utext.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utf.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utf8.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utf16.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utf32.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utf_old.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utmscale.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utrace.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utrans.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
utypes.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uvernum.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
uversion.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
vtzone.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📤 Upload File
Upload
📁 Create Folder
Create Folder