diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | Pull requests | README | LICENSE

export.h (297B)


      1 #ifndef DIARY_EXPORT_H
      2 #define DIARY_EXPORT_H
      3 
      4 #include <stdio.h>
      5 #include <pthread.h>
      6 #include <time.h>
      7 #include "utils.h"
      8 
      9 void ics_export(const char* ics_filepath, WINDOW* header, WINDOW* cal, WINDOW* aside, int* pad_pos, struct tm* curs_date, struct tm* cal_start, struct tm* cal_end);
     10 
     11 #endif