summaryrefslogtreecommitdiff
path: root/src/kernel/vfs/path.h
diff options
context:
space:
mode:
authordzwdz2021-08-09 12:47:46 +0200
committerdzwdz2021-08-09 20:14:11 +0200
commitd8a32a1005c33f6b95bbb3699a8f41ff5e19800e (patch)
tree08e292193618aa44f7d59cb445adb5c017ee028f /src/kernel/vfs/path.h
parent0297e9db976aa2c3f17e237c6c5c37f3fde454a9 (diff)
a sloppy implementation of path_simplify()
it's kinda bad. it passes the tests, though...
Diffstat (limited to 'src/kernel/vfs/path.h')
-rw-r--r--src/kernel/vfs/path.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/kernel/vfs/path.h b/src/kernel/vfs/path.h
index 3aefccf..769aa27 100644
--- a/src/kernel/vfs/path.h
+++ b/src/kernel/vfs/path.h
@@ -1,10 +1,7 @@
#pragma once
-#include <stdbool.h>
#include <stddef.h>
/** Reduce a path to its simplest form.
- * *in and *out can't overlap unless they're equal. Then, the path is modified
- * in-place.
*
* @return length of the string in *out, always less than len. Negative if the path was invalid.
*/