1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/include/history.h
2015-09-02 12:29:28 +02:00

32 lines
916 B
C

#ifndef ROFI_HISTORY_H
#define ROFI_HISTORY_H
/**
* @param filename The filename of the history cache.
* @param entry The entry to add/increment
*
* Sets the entry in the history, if it exists its use-count is incremented.
*
*/
void history_set ( const char *filename, const char *entry ) __attribute__( ( nonnull ) );
/**
* @param filename The filename of the history cache.
* @param entry The entry to remove
*
* Removes the entry from the history.
*/
void history_remove ( const char *filename, const char *entry ) __attribute__( ( nonnull ) );
/**
* @param filename The filename of the history cache.
* @param length The length of the returned list.
*
* Gets the entries in the list (in order of usage)
* @returns a list of entries length long. (and NULL terminated).
*/
char ** history_get_list ( const char *filename, unsigned int * length ) __attribute__( ( nonnull ) );
#endif