mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/ByteBuffer.h>
 | 
						|
 | 
						|
namespace Web::Infra {
 | 
						|
 | 
						|
void byte_lowercase(ByteBuffer&);
 | 
						|
void byte_uppercase(ByteBuffer&);
 | 
						|
bool is_prefix_of(ReadonlyBytes potential_prefix, ReadonlyBytes input);
 | 
						|
bool is_byte_less_than(ReadonlyBytes a, ReadonlyBytes b);
 | 
						|
 | 
						|
}
 |