1 /*
2   Copyright (C) 2012 Inverse inc
3 
4   Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
5 
6   This file is part of SOPE.
7 
8   SOPE is free software; you can redistribute it and/or modify it under
9   the terms of the GNU Lesser General Public License as published by the
10   Free Software Foundation; either version 2, or (at your option) any
11   later version.
12 
13   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
14   WARRANTY; without even the implied warranty of MERCHANTABILITY or
15   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16   License for more details.
17 
18   You should have received a copy of the GNU Lesser General Public
19   License along with SOPE; see the file COPYING.  If not, write to the
20   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21   02111-1307, USA.
22 */
23 
24 #import <Foundation/NSData.h>
25 
26 @interface NSData (NGRFC822)
27 
28 - (NSData *) dataByEnsuringCRLFLineEndings;
29 
30 @end
31