mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:42:43 +00:00 
			
		
		
		
	 6b849fc8b1
			
		
	
	
		6b849fc8b1
		
	
	
	
	
		
			
			This allows us to get rid of an include to LibC/sys/ttydefaults.h in the Kernel TTY implementation. Also, move ttydefchars static const struct to another file called Kernel/API/ttydefaultschars.h, so it could be used too in the Kernel TTY implementation without the need to include anything from LibC.
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			863 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Daniel Bertalan <dani@danielbertalan.dev>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <Kernel/API/POSIX/termios.h>
 | |
| #include <Kernel/API/ttydefaults.h>
 | |
| 
 | |
| #ifdef __clang__
 | |
| #    pragma clang diagnostic push
 | |
| #    pragma clang diagnostic ignored "-Wc99-designator"
 | |
| #endif
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| static const cc_t ttydefchars[NCCS] = {
 | |
|     [VINTR] = CINTR,
 | |
|     [VQUIT] = CQUIT,
 | |
|     [VERASE] = CERASE,
 | |
|     [VKILL] = CKILL,
 | |
|     [VEOF] = CEOF,
 | |
|     [VTIME] = CTIME,
 | |
|     [VMIN] = CMIN,
 | |
|     [VSWTC] = CSWTC,
 | |
|     [VSTART] = CSTART,
 | |
|     [VSTOP] = CSTOP,
 | |
|     [VSUSP] = CSUSP,
 | |
|     [VEOL] = CEOL,
 | |
|     [VREPRINT] = CREPRINT,
 | |
|     [VDISCARD] = CDISCARD,
 | |
|     [VWERASE] = CWERASE,
 | |
|     [VLNEXT] = CLNEXT,
 | |
|     [VEOL2] = CEOL2
 | |
| };
 | |
| 
 | |
| #ifdef __clang__
 | |
| #    pragma clang diagnostic pop
 | |
| #endif
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |