diary

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

import.h (380B)


      1 #ifndef DIARY_IMPORT_H
      2 #define DIARY_IMPORT_H
      3 
      4 #define _XOPEN_SOURCE 700
      5 #include <stdio.h>
      6 #include <stdlib.h>
      7 #include <regex.h>
      8 #include <stdbool.h>
      9 #include <time.h>
     10 #include <pthread.h>
     11 #include "utils.h"
     12 
     13 void ics_import(const char* ics_input, WINDOW* header, WINDOW* cal, WINDOW* aside, int* pad_pos, struct tm* curs_date, struct tm* cal_start, struct tm* cal_end);
     14 
     15 #endif