mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 22:53:47 +01:00
16 lines
247 B
C
16 lines
247 B
C
|
/* See LICENSE file for license and copyright information */
|
||
|
|
||
|
#ifndef PRINT_H
|
||
|
#define PRINT_H
|
||
|
|
||
|
#include "zathura.h"
|
||
|
|
||
|
/**
|
||
|
* Opens a print dialog to print the current file
|
||
|
*
|
||
|
* @param zathura
|
||
|
*/
|
||
|
void print(zathura_t* zathura);
|
||
|
|
||
|
#endif // PRINT_H
|