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

Last change on this file since 118 was 118, checked in by pinsard, 18 years ago

add $ in Calendar, Grid, Interpolation, Obsolete and Postscript *.pro files, add svn:keywords Id to all these files, some improvements in header

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