This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"html/template" | |
"github.com/gorilla/sessions" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* call processNextArchiveEntry in some kind of loop! */ | |
- (int)processNextArchiveEntry:(struct archive *)archive | |
{ | |
struct archive_entry *entry = NULL; | |
int result = ARCHIVE_OK; | |
result = archive_read_next_header(archive, &entry); | |
if (result == ARCHIVE_OK) | |
{ |
NewerOlder