function [ y, j ] = j_borrow_common ( y, j ) %*****************************************************************************80 % %% J_BORROW_COMMON borrows year-days from years in a Common date. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 16 June 2012 % % Author: % % John Burkardt % % Parameters: % % Input/output, integer Y, J, a YJ date. % while ( j <= 0 ) y = y - 1; days = year_length_common ( y ); j = j + days; end return end