From d3c9975943df58e293359b87905d19ff1fd52061 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:00:15 +0200 Subject: Imported Upstream version 0.5 --- UsersTable.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 UsersTable.h (limited to 'UsersTable.h') diff --git a/UsersTable.h b/UsersTable.h new file mode 100644 index 0000000..3007ce7 --- /dev/null +++ b/UsersTable.h @@ -0,0 +1,39 @@ +/* Do not edit this file. It was automatically genarated. */ + +#ifndef HEADER_UsersTable +#define HEADER_UsersTable +/* +htop +(C) 2004 Hisham H. Muhammad +Released under the GNU GPL, see the COPYING file +in the source distribution for its full text. +*/ + +#include "Hashtable.h" +#include "String.h" + +#include +#include +#include +#include + +#include "debug.h" +#include + +#ifndef SYSCONFDIR +#define SYSCONFDIR "/etc" +#endif + +typedef struct UsersTable_ { + Hashtable* users; +} UsersTable; + +UsersTable* UsersTable_new(); + +void UsersTable_delete(UsersTable* this); + +char* UsersTable_getRef(UsersTable* this, int uid); + +int UsersTable_size(UsersTable* this); + +#endif -- cgit v1.2.3