Changeset ab936440 in mainline for uspace/lib/cpp/include/__bits/string/string.hpp
- Timestamp:
- 2019-02-12T20:42:42Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f31ca47
- Parents:
- 7f7817a9 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:26:18)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:42:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/string/string.hpp
r7f7817a9 rab936440 1 1 /* 2 * Copyright (c) 201 8Jaroslav Jindrak2 * Copyright (c) 2019 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 32 32 #include <__bits/string/stringfwd.hpp> 33 33 #include <algorithm> 34 #include <cassert> 34 35 #include <initializer_list> 35 36 #include <iosfwd> … … 178 179 { 179 180 // TODO: implement 181 __unimplemented(); 180 182 return 0; 181 183 } … … 184 186 { 185 187 // TODO: implement 188 __unimplemented(); 186 189 return 0; 187 190 } … … 190 193 { 191 194 // TODO: implement 195 __unimplemented(); 192 196 return nullptr; 193 197 } … … 196 200 { 197 201 // TODO: implement 202 __unimplemented(); 198 203 return nullptr; 199 204 } … … 202 207 { 203 208 // TODO: implement 209 __unimplemented(); 204 210 return nullptr; 205 211 } … … 208 214 { 209 215 // TODO: implement 216 __unimplemented(); 210 217 return nullptr; 211 218 } … … 266 273 { 267 274 // TODO: implement 275 __unimplemented(); 268 276 return 0; 269 277 } … … 272 280 { 273 281 // TODO: implement 282 __unimplemented(); 274 283 return 0; 275 284 } … … 278 287 { 279 288 // TODO: implement 289 __unimplemented(); 280 290 return nullptr; 281 291 } … … 284 294 { 285 295 // TODO: implement 296 __unimplemented(); 286 297 return nullptr; 287 298 } … … 290 301 { 291 302 // TODO: implement 303 __unimplemented(); 292 304 return nullptr; 293 305 } … … 296 308 { 297 309 // TODO: implement 310 __unimplemented(); 298 311 return nullptr; 299 312 } … … 353 366 { 354 367 // TODO: This function does not exits... 368 __unimplemented(); 355 369 //return hel::wstr_lcmp(s1, s2, n); 356 370 return 0; … … 1939 1953 { 1940 1954 // TODO: implement 1955 __unimplemented(); 1941 1956 return size_t{}; 1942 1957 }
Note:
See TracChangeset
for help on using the changeset viewer.