Subversion Repositories IRC-Archiver

Rev

Rev 11 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: web_db.h 13 2024-08-30 07:33:43Z nishi $ */

#ifndef __WEB_DB_H__
#define __WEB_DB_H__

typedef struct {
        unsigned long long from;
        unsigned long long to;
        const char* channel;
} web_range_t;

typedef struct {
        char* username;
        char* message;
        unsigned long long time;
} entry_t;

entry_t** web_db_query(web_range_t range);

#endif