1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef __UTILS_H__
#define __UTILS_H__
typedef struct{
char *data;
long length;
long real_length;
}
Buff;
typedef struct Newspost_SList {
void *data;
struct Newspost_SList *next;
}
SList;
typedef struct {
struct stat fileinfo;
Buff *filename;
n_uint32 crc;
boolean *parts;
}
file_entry;
file_entry * file_entry_alloc();
file_entry * file_entry_free(file_entry *fe);
Buff * getline(Buff *buff, FILE *file);
Buff *buff_add(Buff *buff, char *data, ... );
Buff * buff_free(Buff *buff);
Buff *buff_create(Buff *buff, char *data, ... );
SList *slist_next(SList *slist);
SList *slist_append(SList *slist, void *data);
SList *slist_prepend(SList *slist, void *data);
SList *slist_remove(SList *slist, void *data);
void slist_free(SList *slist);
int slist_length(SList *slist);
const char *n_basename(const char *path);
#endif /* __UTILS_H__ */
|