mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Support braces on next line for config blocks
This commit is contained in:
parent
7c810dc344
commit
51bb9d8573
3 changed files with 74 additions and 8 deletions
|
@ -48,6 +48,20 @@ char *read_line(FILE *file) {
|
|||
return string;
|
||||
}
|
||||
|
||||
char *peek_line(FILE *file, int offset) {
|
||||
int pos = ftell(file);
|
||||
char *line = NULL;
|
||||
for (int i = 0; i <= offset; i++) {
|
||||
free(line);
|
||||
line = read_line(file);
|
||||
if (!line) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
fseek(file, pos, SEEK_SET);
|
||||
return line;
|
||||
}
|
||||
|
||||
char *read_line_buffer(FILE *file, char *string, size_t string_len) {
|
||||
size_t length = 0;
|
||||
if (!string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue