source: trunk/SRC/Obsolete/jourdsmois.pro @ 134

Last change on this file since 134 was 134, checked in by navarro, 18 years ago

change *.pro file properties (del eof-style, del executable, set keywords Id

  • Property svn:keywords set to Id
File size: 834 bytes
Line 
1;------------------------------------------------------------
2;------------------------------------------------------------
3;------------------------------------------------------------
4;+
5; @file_comments
6; used daysinmonth instead...
7;
8; @obsolete
9;
10; @param mois {in}{optional}
11;
12; @param annee {in}{optional}
13;
14; @history Sebastien Masson (smasson\@lodyc.jussieu.fr)
15; June 2005: Sebastien Masson, english version
16;
17; @version $Id$
18;
19;-
20;------------------------------------------------------------
21;------------------------------------------------------------
22;------------------------------------------------------------
23function jourdsmois, mois, annee
24;
25  compile_opt idl2, strictarrsubs, obsolete
26;
27
28case n_params() OF
29  0:return, daysinmonth()
30  1:return, daysinmonth(mois)
31  2:return, daysinmonth(mois, annee)
32endcase
33
34end
Note: See TracBrowser for help on using the repository browser.