This file contains hidden or 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
#include <errno.h> // for errno | |
#include <fcntl.h> // for O_RDONLY | |
#include <stdio.h> // for fprintf() | |
#include <stdlib.h> // for EXIT_SUCCESS | |
#include <string.h> // for strerror() | |
#include <sys/event.h> // for kqueue() etc. | |
#include <unistd.h> // for close() | |
#include <CoreServices/CoreServices.h> | |
void mycallback( |
This file contains hidden or 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
/* | |
* Local Storage wrapper | |
*/ | |
var LStore = { | |
set: function(key, value) { | |
var rec = { | |
value: value, | |
updated: new Date().getTime() | |
}; |
NewerOlder