xref: /PHP-8.0/sapi/phpdbg/phpdbg_eol.h (revision 5d6e923d)
1 /*
2    +----------------------------------------------------------------------+
3    | Copyright (c) The PHP Group                                          |
4    +----------------------------------------------------------------------+
5    | This source file is subject to version 3.01 of the PHP license,      |
6    | that is bundled with this package in the file LICENSE, and is        |
7    | available through the world-wide-web at the following url:           |
8    | http://www.php.net/license/3_01.txt                                  |
9    | If you did not receive a copy of the PHP license and are unable to   |
10    | obtain it through the world-wide-web, please send a note to          |
11    | license@php.net so we can mail you a copy immediately.               |
12    +----------------------------------------------------------------------+
13    | Authors: Anatol Belski <ab@php.net>                                  |
14    +----------------------------------------------------------------------+
15 */
16 
17 #ifndef PHPDBG_EOL_H
18 #define PHPDBG_EOL_H
19 
20 #include "phpdbg.h"
21 
22 struct phpdbg_eol_rep {
23 	char *name;
24 	char *rep;
25 	int id;
26 };
27 
28 enum {
29 	PHPDBG_EOL_CRLF, /* DOS */
30 	/*PHPDBG_EOL_LFCR,*/ /* for Risc OS? */
31 	PHPDBG_EOL_LF, /* UNIX */
32 	PHPDBG_EOL_CR /* MAC */
33 };
34 
35 int phpdbg_eol_global_update(char *name);
36 
37 char *phpdbg_eol_name(int id);
38 
39 char *phpdbg_eol_rep(int id);
40 
41 void phpdbg_eol_convert(char **str, int *len);
42 
43 #endif /* PHPDBG_EOL_H */
44