mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-14 18:23:46 +01:00
16 lines
222 B
C
16 lines
222 B
C
/* SPDX-License-Identifier: Zlib */
|
|
|
|
#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
|