summaryrefslogtreecommitdiff
path: root/support.h
diff options
context:
space:
mode:
authorGilles Moris <gilles.moris@free.fr>2019-05-15 07:33:38 +0200
committerGilles Moris <gilles.moris@free.fr>2019-05-15 07:33:38 +0200
commitf9d08a6b6bf0bae229f45eeebeeacc64d4369151 (patch)
treeebecf4d6799394c59283f7930594b11083acb53c /support.h
parent522273e3db5823aedf6af8786cb01a316367ed32 (diff)
downloadsgdisk-f9d08a6b6bf0bae229f45eeebeeacc64d4369151.tar.gz
Perform case insensitive search of partition types
Diffstat (limited to 'support.h')
-rw-r--r--support.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/support.h b/support.h
index 8f976da..f71c7cb 100644
--- a/support.h
+++ b/support.h
@@ -82,5 +82,6 @@ int IsHex(string input); // Returns 1 if input can be hexadecimal number....
int IsLittleEndian(void); // Returns 1 if CPU is little-endian, 0 if it's big-endian
void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue
void WinWarning(void);
+string ToLower(const string& input);
#endif