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
//In C: | |
//============== | |
// The C Function we need to call: | |
// | |
// OSStatus someFunctionForData ( | |
// int *outType, | |
// const void **outData | |
// ) |
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
package java112.labs2; | |
import java.io.*; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class MapDemo | |
*/ | |
public class MapDemo { |
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
package java112.labs2; | |
import java.io.*; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class MapDemo | |
*/ | |
public class MapDemo { |
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
package java112.$3; | |
/** | |
* @author <#=AUTHOR#> | |
* class $1 | |
*/ | |
public class ${1:name} { | |
public void run() { | |
$end |
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
package java112.labs1; | |
import java.io.*; | |
/** | |
* @author Eric Knapp | |
* class OutputDemo | |
* TODO: comment | |
*/ | |
public class OutputDemo { |
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
package java112.labs1; | |
import java.io.*; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class SetDemo | |
* TODO: comment | |
*/ |
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
http://nilsou.com/blog/2013/08/21/objective-c-blocks-syntax/ |
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
http://sealiesoftware.com/msg/index.html |
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
package java112.labs1; | |
import java.io.*; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class SetDemo | |
* TODO: comment |
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
// | |
// main.c | |
// Loops | |
// | |
// Created by Eric Knapp on 1/30/14. | |
// Copyright (c) 2014 Eric Knapp. All rights reserved. | |
// | |
#include <stdio.h> |
NewerOlder