mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
649d2faeab
We had some inconsistencies before: - Sometimes "The", sometimes "the" - Sometimes trailing ".", sometimes no trailing "." I picked the most common one (lowecase "the", trailing ".") and applied it to all copyright headers. By using the exact same string everywhere we can ensure nothing gets missed during a global search (and replace), and that these inconsistencies are not spread any further (as copyright headers are commonly copied to new files).
25 lines
463 B
C++
25 lines
463 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <LibLine/Style.h>
|
|
|
|
namespace Line {
|
|
namespace VT {
|
|
|
|
void save_cursor();
|
|
void restore_cursor();
|
|
void clear_to_end_of_line();
|
|
void clear_lines(size_t count_above, size_t count_below = 0);
|
|
void move_relative(int x, int y);
|
|
void move_absolute(u32 x, u32 y);
|
|
void apply_style(const Style&, bool is_starting = true);
|
|
|
|
}
|
|
}
|