mightymandel v16

GPU-based Mandelbrot set explorer

filename.h
Go to the documentation of this file.
1 // mightymandel -- GPU-based Mandelbrot Set explorer
2 // Copyright (C) 2012,2013,2014,2015 Claude Heiland-Allen
3 // License GPL3+ http://www.gnu.org/licenses/gpl.html
4 
5 #ifndef FILENAME_H
6 #define FILENAME_H 1
7 
8 #include <time.h>
9 
10 struct filename {
11  time_t t;
12  struct tm tm;
13 };
14 
15 void filename_begin(struct filename *s);
16 char *filename_name(struct filename *s, const char *ext, int seqno, int tilex, int tiley);
17 
18 #endif