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

Last change on this file since 325 was 325, checked in by pinsard, 16 years ago

modification of some headers (+some corrections) to prepare usage of the new idldoc

  • Property svn:keywords set to Id
File size: 475 bytes
Line 
1;+
2;
3; @file_comments
4; use <pro>daysinmonth</pro> instead
5;
6; @obsolete
7;
8; @param mois {in}{optional}
9;
10; @param annee {in}{optional}
11;
12; @history
13; Sebastien Masson (smasson\@lodyc.jussieu.fr)
14; June 2005: Sebastien Masson, english version
15;
16; @version
17; $Id$
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.