savepoint style

This commit is contained in:
NunoSempere 2024-11-07 14:06:10 +00:00
parent 9136ab2565
commit 24b95be6dc
3 changed files with 14 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#define STYLE_N 9278 + 1000 #define STYLE_N 9331 + 1000
void read_style_js(char* string) void read_style_js(char* string)
{ {

View File

@ -1,5 +1,5 @@
#pragma once #pragma once
#define STYLE_N 9278 + 1000 #define STYLE_N 9331 + 1000
void read_style_js(char* string); void read_style_js(char* string);

View File

@ -344,3 +344,15 @@ function filterByKeyword(str) {
} }
}); });
} }
var keywords = [
"Sinwar",
"fentanyl",
"tanker",
"Hasina",
"blame",
"victory plan",
];
for (let keyword of keywords) {
filterByKeyword(keyword);
}