mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
6 lines
160 B
C
6 lines
160 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int png_to_webp(FILE* input, FILE* output, int targetSize);
|
|
|
|
int png_to_png(FILE* input, FILE* output, int targetSize);
|