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

Last change on this file since 231 was 231, checked in by pinsard, 17 years ago

improvements/corrections of some *.pro headers

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