#include "private.h"
#include <stdio.h>
#include "proto.h"
Go to the source code of this file.
|
void gsm_debug_longword | P2 ((name, value), char *name, longword value) |
|
void gsm_debug_word | P2 ((name, value), char *name, word value) |
|
void gsm_debug_words | P4 ((name, from, to, ptr), char *name, int from, int to, word *ptr) |
|
void gsm_debug_longwords | P4 ((name, from, to, ptr), char *name, int from, int to, longword *ptr) |
|
◆ P2() [1/2]
Definition at line 62 of file debug.c.
66 fprintf(stderr,
"%s: %d\n",
name, (
long)
value );
◆ P2() [2/2]
void gsm_debug_word P2 |
( |
(name, value) |
, |
|
|
char * |
name, |
|
|
word |
value |
|
) |
| |
◆ P4() [1/2]
void gsm_debug_words P4 |
( |
(name, from, to, ptr) |
, |
|
|
char * |
name, |
|
|
int |
from, |
|
|
int |
to, |
|
|
word * |
ptr |
|
) |
| |
Definition at line 21 of file debug.c.
29 fprintf( stderr,
"%s [%d .. %d]: ",
name, from, to );
31 fprintf(stderr,
"%d ", ptr[ from ] );
33 if (nprinted++ >= 7) {
35 if (from < to) putc(
'\n', stderr);
◆ P4() [2/2]
void gsm_debug_longwords P4 |
( |
(name, from, to, ptr) |
, |
|
|
char * |
name, |
|
|
int |
from, |
|
|
int |
to, |
|
|
longword * |
ptr |
|
) |
| |
Definition at line 41 of file debug.c.
49 fprintf( stderr,
"%s [%d .. %d]: ",
name, from, to );
52 fprintf(stderr,
"%d ", ptr[ from ] );
54 if (nprinted++ >= 7) {
56 if (from < to) putc(
'\n', stderr);