mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:23:47 +01:00
18 lines
443 B
C
18 lines
443 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef COMPLETION_H
|
|
#define COMPLETION_H
|
|
|
|
#include <girara.h>
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
girara_completion_t* cc_print(girara_session_t* session, char* input);
|
|
|
|
#endif // COMPLETION_H
|