diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-17 18:28:30 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-17 18:35:48 +0100 |
commit | 58dfc42ecfa95f2b859790d726bfae2feea1faa9 (patch) | |
tree | cf5a47fbb14662b9a48e173dcaead08892fa0424 /src/shared/login-shared.h | |
parent | 4c63a53ac5190dc8b837c15daefec5772de66bdc (diff) |
build-sys: move sd-login src/login → src/libsystemd/sd-login
After all, it is ultimately linked to libsystems.so anyway, thus belongs
there and shares very little with the rest of logind, hence let's move
this away.
Diffstat (limited to 'src/shared/login-shared.h')
-rw-r--r-- | src/shared/login-shared.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/shared/login-shared.h b/src/shared/login-shared.h new file mode 100644 index 0000000000..b2787c9c62 --- /dev/null +++ b/src/shared/login-shared.h @@ -0,0 +1,24 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +/*** + This file is part of systemd. + + Copyright 2013 Zbigniew Jędrzejewski-Szmek + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +#include <stdbool.h> + +bool session_id_valid(const char *id); |