summaryrefslogtreecommitdiff
path: root/nuttx/include/cxx/cstring
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-29 18:30:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-29 18:30:48 +0000
commit30e683a37f8fa682bfda61a7089eca84356eead6 (patch)
treecbdb5c1080982d7ba1ef48411a51b061f3e7571e /nuttx/include/cxx/cstring
parentc28168e6888089662f84f65e848797a2d3f73eed (diff)
downloadpx4-nuttx-30e683a37f8fa682bfda61a7089eca84356eead6.tar.gz
px4-nuttx-30e683a37f8fa682bfda61a7089eca84356eead6.tar.bz2
px4-nuttx-30e683a37f8fa682bfda61a7089eca84356eead6.zip
Review and update some board configurations
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4991 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/cxx/cstring')
-rw-r--r--nuttx/include/cxx/cstring12
1 files changed, 8 insertions, 4 deletions
diff --git a/nuttx/include/cxx/cstring b/nuttx/include/cxx/cstring
index 156e01856..84d98277d 100644
--- a/nuttx/include/cxx/cstring
+++ b/nuttx/include/cxx/cstring
@@ -1,7 +1,7 @@
//***************************************************************************
// include/cxx/cstring
//
-// Copyright (C) 2009 Gregory Nutt. All rights reserved.
+// Copyright (C) 2009-2012 Gregory Nutt. All rights reserved.
// Author: Gregory Nutt <gnutt@nuttx.org>
//
// Redistribution and use in source and binary forms, with or without
@@ -50,7 +50,7 @@
namespace std
{
using ::size_t;
- using ::strchr;
+
using ::strdup;
using ::strndup;
using ::strerror;
@@ -70,12 +70,16 @@ namespace std
using ::strspn;
using ::strcspn;
using ::strstr;
+ using ::strcasestr;
using ::strtok;
using ::strtok_r;
- using ::memset;
- using ::memcpy;
+
+ using ::memchr;
+ using ::memccpy;
using ::memcmp;
+ using ::memcpy;
using ::memmove;
+ using ::memset;
}
#endif // __INCLUDE_CXX_CSTRING