]>
git.saurik.com Git - apple/security.git/blob - Security/libsecurity_apple_csp/lib/cspdebugging.c
2 * Copyright (c) 2000-2001,2011,2013-2014 Apple Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
22 Contains: Debugging support.
25 Copyright (c) 1998,2011,2013-2014 Apple Inc. All Rights Reserved.
27 Change History (most recent first):
33 #include "cspdebugging.h"
38 #include <TextUtils.h>
40 /* common log macros */
42 /* this one needs a writable string */
43 static void logCom(unsigned char *str
) {
48 /* remaining ones can take constant strings */
49 void dblog0(char *str
) {
51 strcpy((char *)outStr
, str
);
55 void dblog1(char *str
, void *arg1
) {
57 sprintf((char *)outStr
, str
, arg1
);
61 void dblog2(char *str
, void * arg1
, void * arg2
) {
63 sprintf((char *)outStr
, str
, arg1
, arg2
);
67 void dblog3(char *str
, void * arg1
, void * arg2
, void * arg3
) {
69 sprintf((char *)outStr
, str
, arg1
, arg2
, arg3
);
73 void dblog4(char *str
, void * arg1
, void * arg2
, void * arg3
, void * arg4
) {
75 sprintf((char *)outStr
, str
, arg1
, arg2
, arg3
, arg4
);
79 #endif /* !LOG_VIA_PRINTF */