2010-11-10 20:31:15 +01:00
|
|
|
/* See LICENSE file for license and copyright information */
|
2010-11-10 20:47:53 +01:00
|
|
|
|
|
|
|
#ifndef COMPLETION_H
|
|
|
|
#define COMPLETION_H
|
|
|
|
|
2010-11-29 14:58:56 +01:00
|
|
|
#include <girara.h>
|
|
|
|
|
2011-02-08 07:51:53 +01:00
|
|
|
/**
|
|
|
|
* Completion for the print command. Creates a list of available printers
|
|
|
|
*
|
|
|
|
* @param session The used girara session
|
|
|
|
* @param input The current input
|
|
|
|
* @return The completion object or NULL if an error occured
|
|
|
|
*/
|
2010-11-29 14:58:56 +01:00
|
|
|
girara_completion_t* cc_print(girara_session_t* session, char* input);
|
|
|
|
|
2010-11-10 20:47:53 +01:00
|
|
|
#endif // COMPLETION_H
|