Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
refs/heads/main
/
.
/
coccinelle
/
empty-or-root.cocci
blob: d36f0c8b1bf6352a3cf897da141e3cffa06eeb2b [
file
] [
log
] [
blame
] [
raw
]
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
expression s
;
@@
-
(
isempty
(
s
)
||
path_equal
(
s
,
"/"
))
+
empty_or_root
(
s
)
@@
expression s
;
@@
-
(!
isempty
(
s
)
&&
!
path_equal
(
s
,
"/"
))
+
!
empty_or_root
(
s
)