main
44ceea7 ยท 1 month ago 7 commits
1#ifndef _SWAY_PASSWORD_BUFFER_H
2#define _SWAY_PASSWORD_BUFFER_H
3
4#include <stddef.h>
5
6char *password_buffer_create(size_t size);
7void password_buffer_destroy(char *buffer, size_t size);
8
9#endif