function value = year_length_eg_civil ( y ) %*****************************************************************************80 % %% YEAR_LENGTH_EG_CIVIL returns the number of days in an Egyptian Civil year. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 24 September 2012 % % Author: % % John Burkardt % % Parameters: % % Input, integer Y, the year to be checked. % % Output, integer VALUE, the number of % days in the year. % value = 365; return end