1*0f471f91SGreg Roach<?php 2*0f471f91SGreg Roach/** 3*0f471f91SGreg Roach * webtrees: online genealogy 4*0f471f91SGreg Roach * Copyright (C) 2018 webtrees development team 5*0f471f91SGreg Roach * This program is free software: you can redistribute it and/or modify 6*0f471f91SGreg Roach * it under the terms of the GNU General Public License as published by 7*0f471f91SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8*0f471f91SGreg Roach * (at your option) any later version. 9*0f471f91SGreg Roach * This program is distributed in the hope that it will be useful, 10*0f471f91SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*0f471f91SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*0f471f91SGreg Roach * GNU General Public License for more details. 13*0f471f91SGreg Roach * You should have received a copy of the GNU General Public License 14*0f471f91SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15*0f471f91SGreg Roach */ 16*0f471f91SGreg Roachnamespace Fisharebest\Webtrees; 17*0f471f91SGreg Roach 18*0f471f91SGreg Roach/** 19*0f471f91SGreg Roach * GEDCOM 5.5.1 specification 20*0f471f91SGreg Roach */ 21*0f471f91SGreg Roachclass Gedcom { 22*0f471f91SGreg Roach // Use MSDOS style line endings, for maximum compatibility. 23*0f471f91SGreg Roach const EOL = "\r\n"; 24*0f471f91SGreg Roach 25*0f471f91SGreg Roach // 255 less the EOL character. 26*0f471f91SGreg Roach const LINE_LENGTH = 253; 27*0f471f91SGreg Roach} 28