C Library Functions  - v2mo (3)

NAME

v2mo(3f) - [M_time:MONTH_NAME] returns the month name of a Common month number (LICENSE:MIT)

CONTENTS

Synopsis
Description
Options
Returns
Example
Author
License

SYNOPSIS

function v2mo(imonth,short) result(month_name)

    integer,intent(in)           :: imonth      ! month number (1-12)
    character(len=:),allocatable :: month_name  ! month name
    logical,intent(in),optional  :: short

DESCRIPTION

Given a Common Calendar month number, return the name of the month as a string.

OPTIONS

imonth Common month number (1-12). If out of the allowable range the month name returned will be ’UNKNOWN’.
short Flag whether to return short or long name

RETURNS

month_name
  A string representing a month name or the word ’UNKNOWN’

EXAMPLE

Sample program:

    program demo_v2mo
    use M_time, only : v2mo
    implicit none
    integer :: i
       write(*,*)(v2mo(i),i=1,13)
    end program demo_v2mo

results:

    January
    February
    March
    April
    May
    June
    July
    August
    September
    October
    November
    December
    UNKNOWN.

AUTHOR

John S. Urban, 2015

LICENSE

    MIT


Nemo Release 3.1 v2mo (3) February 23, 2025
Generated by manServer 1.08 from 0fa382b3-e164-43f2-bdf1-7c944547fde4 using man macros.