From 06f58d02c22c2df3b4b6c0cb1d602057b328a18d Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Sat, 8 Feb 2014 22:21:30 +0100 Subject: [PATCH] Add note --- userlib/include/cstring.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/userlib/include/cstring.hpp b/userlib/include/cstring.hpp index 466ecc5a..8586b570 100644 --- a/userlib/include/cstring.hpp +++ b/userlib/include/cstring.hpp @@ -8,6 +8,9 @@ #ifndef USERLIB_STRING_H #define USERLIB_STRING_H +//TODO Once the shell use std::string, remove this file and its source file +//equivalent + int str_compare(const char *s1, const char *s2); bool str_equals(const char* s1, const char* s2);