You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
509 B
23 lines
509 B
/*
|
|
* bin.h
|
|
* bin.c header declarations.
|
|
*
|
|
* Copyright (c) 2022
|
|
* Tom MTT. <tom@heimdall.pm>
|
|
*
|
|
* This file is licensed under the 3-Clause BSD License.
|
|
* You should have received a copy of the 3-Clause BSD License
|
|
* along with this program. If not, see
|
|
* <https://basedwa.re/tmtt/feuille/src/branch/main/LICENSE>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "feuille.h"
|
|
|
|
int paste_exists(char *);
|
|
int write_paste(char *, unsigned long, char *);
|
|
|
|
char *generate_id(int);
|
|
char *create_url(char *);
|