Searched refs:MAX_PREFIX_LEN (Results 1 – 1 of 1) sorted by relevance
/babblesim_base-3.6.0-3.5.0/libUtilv1/src/ |
D | bs_tracing.c | 26 #define MAX_PREFIX_LEN 40 macro 27 static char prefix_s[MAX_PREFIX_LEN]="?_??:"; //In case somebody throws messages before initializin… 28 static char prefix_s_color[MAX_PREFIX_LEN]="?_??:"; //like prefix_s, but with colors 71 strncpy(prefix_s, prefix, MAX_PREFIX_LEN-1); in bs_trace_set_prefix() 72 int size = BS_MIN(strlen(prefix), MAX_PREFIX_LEN-1); in bs_trace_set_prefix() 75 strncpy(prefix_s_color, prefix, MAX_PREFIX_LEN-1); in bs_trace_set_prefix() 76 size = BS_MIN(strlen(prefix), MAX_PREFIX_LEN-1); in bs_trace_set_prefix() 81 strncpy(prefix_s_color, prefix, MAX_PREFIX_LEN-1); in bs_trace_set_color_prefix() 82 int size = BS_MIN(strlen(prefix), MAX_PREFIX_LEN-1); in bs_trace_set_color_prefix()
|