dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

autoreload_nop.c (949B)


      1 /* Copyright 2017 Max Voit
      2  *
      3  * This file is part of sxiv.
      4  *
      5  * sxiv is free software; you can redistribute it and/or modify
      6  * it under the terms of the GNU General Public License as published
      7  * by the Free Software Foundation; either version 2 of the License,
      8  * or (at your option) any later version.
      9  *
     10  * sxiv is distributed in the hope that it will be useful,
     11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13  * GNU General Public License for more details.
     14  *
     15  * You should have received a copy of the GNU General Public License
     16  * along with sxiv.  If not, see <http://www.gnu.org/licenses/>.
     17  */
     18 
     19 #include "sxiv.h"
     20 
     21 void arl_init(arl_t *arl)
     22 {
     23 	arl->fd = -1;
     24 }
     25 
     26 void arl_cleanup(arl_t *arl)
     27 {
     28 	(void) arl;
     29 }
     30 
     31 void arl_setup(arl_t *arl, const char *filepath)
     32 {
     33 	(void) arl;
     34 	(void) filepath;
     35 }
     36 
     37 bool arl_handle(arl_t *arl)
     38 { 
     39 	(void) arl;
     40 	return false;
     41 }
     42