chiark / gitweb /
Drop my copyright headers
[elogind.git] / src / basic / login-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <string.h>
4
5 #include "login-util.h"
6 #include "string-util.h"
7
8 bool session_id_valid(const char *id) {
9
10         if (isempty(id))
11                 return false;
12
13         return id[strspn(id, LETTERS DIGITS)] == '\0';
14 }