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
/* | |
* Quick example to test dlsym() | |
* build: gcc -W -Wall -Werror -o test-dlsym test-dlsym.c | |
* Usage: ./test-dlsym openldap | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <dlfcn.h> |
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
/* reads a plist file for an application */ | |
/* gcc -o plist-dump plist-dump.m -framework Foundation */ | |
#import <Cocoa/Cocoa.h> | |
#import <Foundation/Foundation.h> | |
#import <stdio.h> | |
int main(int argc, char * argv[]); | |
int main(int argc, char * argv[]) | |
{ |
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
/* | |
* ODBC Shell | |
* Copyright (C) 2011 Bindle Binaries <[email protected]>. | |
* | |
* @BINDLE_BINARIES_BSD_LICENSE_START@ | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are | |
* met: | |
* |