Last change
on this file since 95 was 7, checked in by Nicholas Riley, 22 years ago |
F-Script Anywhere 1.1.2a1
|
File size:
558 bytes
|
Rev | Line | |
---|
[7] | 1 | //
|
---|
| 2 | // FSAnywhere.m
|
---|
| 3 | // F-Script Anywhere
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Sat Feb 02 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import "FSAnywhere.h"
|
---|
| 10 |
|
---|
| 11 | // wish we could #define out completely, but it seems impossible to use varargs #defines on OS X's cpp
|
---|
| 12 |
|
---|
| 13 | void FSALog(NSString *fmt, ...) {
|
---|
| 14 | #if FSA_DEBUG
|
---|
| 15 | va_list ap;
|
---|
| 16 | va_start(ap, fmt);
|
---|
| 17 | NSLogv([NSString stringWithFormat: @"F-Script Anywhere: %@", fmt], ap);
|
---|
| 18 | #endif
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | // XXX put this in a .strings file instead
|
---|
| 22 | NSString * FSA_FScriptURL = @"http://www.fscript.org/"; |
---|
Note:
See
TracBrowser
for help on using the repository browser.