string-helpers.c: add string_empty()

This commit is contained in:
Johan Malm 2024-01-19 19:06:07 +00:00 committed by Johan Malm
parent 8c9be2f0d1
commit c066821046
9 changed files with 27 additions and 14 deletions

View file

@ -12,6 +12,7 @@
#include "buffer.h"
#include "button/button-png.h"
#include "button/common.h"
#include "common/string-helpers.h"
#include "labwc.h"
/*
@ -49,7 +50,7 @@ button_png_load(const char *button_name, struct lab_data_buffer **buffer)
wlr_buffer_drop(&(*buffer)->base);
*buffer = NULL;
}
if (!button_name || !*button_name) {
if (string_null_or_empty(button_name)) {
return;
}