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

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

replace some print by some report in some .pro (continuation) + improvements/corrections of some *.pro headers

  • Property svn:keywords set to Id
File size: 477 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;-
20;
21function jourdsmois, mois, annee
22;
23  compile_opt idl2, strictarrsubs, obsolete
24;
25
26case n_params() OF
27  0:return, daysinmonth()
28  1:return, daysinmonth(mois)
29  2:return, daysinmonth(mois, annee)
30endcase
31
32end
Note: See TracBrowser for help on using the repository browser.