opt: remove useless code

This commit is contained in:
DreamMaoMao 2025-05-16 15:57:04 +08:00
parent f5ad0f263b
commit 8b752adcd4

View file

@ -415,8 +415,6 @@ typedef struct {
} SessionLock; } SessionLock;
/* function declarations */ /* function declarations */
static void logtofile(const char *fmt, ...); // 日志函数
static void lognumtofile(float num); // 日志函数
static void applybounds( static void applybounds(
Client *c, Client *c,
struct wlr_box *bbox); // 设置边界规则,能让一些窗口拥有比较适合的大小 struct wlr_box *bbox); // 设置边界规则,能让一些窗口拥有比较适合的大小
@ -1742,26 +1740,6 @@ setclient_coordinate_center(struct wlr_box geom, int offsetx, int offsety) {
} }
/* function implementations */ /* function implementations */
void logtofile(const char *fmt, ...) {
char buf[256];
char cmd[256];
va_list ap;
va_start(ap, fmt);
vsprintf((char *)buf, fmt, ap);
va_end(ap);
unsigned int i = strlen((const char *)buf);
sprintf(cmd, "echo '%.*s' >> ~/log", i, buf);
system(cmd);
}
/* function implementations */
void lognumtofile(float num) {
char cmd[256];
sprintf(cmd, "echo '%f' >> ~/log", num);
system(cmd);
}
int // 0.5 custom int // 0.5 custom
applyrulesgeom(Client *c) { applyrulesgeom(Client *c) {
/* rule matching */ /* rule matching */