summaryrefslogtreecommitdiff
path: root/AK/String.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 19:49:22 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 19:54:25 +0100
commit9886b27d9cc67221efc8ee7e277570d146ee9992 (patch)
tree5021bcfb8c68c0f7a7bc371240fbc35c514329bc /AK/String.h
parent819ce91395804d4ae9ac07d0080d3cfbed4ea258 (diff)
downloadserenity-9886b27d9cc67221efc8ee7e277570d146ee9992.zip
Add getpwent() family of functions to LibC.
Also add a little /etc/passwd database. There's just me in there.
Diffstat (limited to 'AK/String.h')
-rw-r--r--AK/String.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/AK/String.h b/AK/String.h
index 023d9f300e..b639fe478c 100644
--- a/AK/String.h
+++ b/AK/String.h
@@ -44,6 +44,8 @@ public:
{
}
+ unsigned toUInt(bool& ok) const;
+
String toLowercase() const
{
if (!m_impl)