mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:37:35 +00:00
Reduce dependence on STL.
This commit is contained in:
parent
0c1a4e8de3
commit
fd708a4cb1
8 changed files with 48 additions and 34 deletions
|
@ -20,7 +20,12 @@ int main(int, char**)
|
|||
for (auto& part : parts)
|
||||
printf("<%s>\n", part.characters());
|
||||
}
|
||||
|
||||
{
|
||||
String cmd = "cd";
|
||||
auto parts = cmd.split(' ');
|
||||
for (auto& part : parts)
|
||||
printf("<%s>\n", part.characters());
|
||||
}
|
||||
|
||||
String empty = "";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue