Skip to content

Instantly share code, notes, and snippets.

View BCDeshiG's full-sized avatar
😶
Nothing Much

Abhid Islam BCDeshiG

😶
Nothing Much
View GitHub Profile
@BCDeshiG
BCDeshiG / libzip_simple.c
Last active November 5, 2021 16:11 — forked from mobius/libzip_simple.c
using libzip to extract files
/* Copyright (C) 2011 rocenting@gmail.com */
/* cc -o example.out libzip_simple.c -lzip */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <zip.h>