repo.or.cz
/
dockapps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wmail: fixed comparisons between signed and unsigned.
[dockapps.git]
/
wmframepic
/
src
/
age_calc.h
blob
4878a2df81c18125578e099c70eee7df60851226
1
#ifndef AGE_CALC_H_
2
#define AGE_CALC_H_
3
4
#include <stdio.h>
5
#include <stdlib.h>
6
#include <time.h>
7
8
#define NUMBER_OF_ROWS 3
9
#define NUMBER_OF_COLUMNS 100
10
11
char
**
get_phrases
(
int
day
,
int
month
,
int
year
);
12
void
clear_phrases
(
char
**
phrases
);
13
14
#endif
/* AGE_CALC_H_ */