1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 #include "user-record.h" 5 #include "group-record.h" 6 7 const char *user_record_state_color(const char *state); 8 9 void user_record_show(UserRecord *hr, bool show_full_group_info); 10 void group_record_show(GroupRecord *gr, bool show_full_user_info); 11