mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
13 lines
174 B
C
13 lines
174 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#if FF_ENABLE_WCWIDTH
|
|
int mk_wcwidth(uint32_t wc);
|
|
#else
|
|
static inline int mk_wcwidth(uint32_t wc) {
|
|
(void) wc;
|
|
return 1;
|
|
}
|
|
#endif
|