function ierror = y_check_islamic ( y ) %*****************************************************************************80 % %% Y_CHECK_ISLAMIC checks an Islamic year. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 23 September 2012 % % Author: % % John Burkardt % % Parameters: % % Input, integer Y, the year, which must not be 0. % % Output, integer IERROR, is 0 if Y is legal, and 1 otherwise. % if ( 0 < y ) ierror = 0; else ierror = 1; end return end