swaylock/include/password-buffer.h

10 lines
194 B
C
Raw Permalink Normal View History

2022-05-30 04:50:30 -05:00
#ifndef _SWAY_PASSWORD_BUFFER_H
#define _SWAY_PASSWORD_BUFFER_H
#include <stddef.h>
char *password_buffer_create(size_t size);
void password_buffer_destroy(char *buffer, size_t size);
#endif