View | Details | Raw Unified | Return to bug 199630
Collapse All | Expand All

(-)modules/presence_mwi/add_events.c (-2 / +2 lines)
Lines 40-53 Link Here
40
#include "presence_mwi.h"
40
#include "presence_mwi.h"
41
/*! \brief utility function that skips spaces and tabs */
41
/*! \brief utility function that skips spaces and tabs */
42
inline char *eat_sp_tab(char *at, char *over)
42
static inline char *eat_sp_tab(char *at, char *over)
43
{
43
{
44
    while((at < over) && ((*at == ' ') || (*at == '\t'))) at++;
44
    while((at < over) && ((*at == ' ') || (*at == '\t'))) at++;
45
    return at;
45
    return at;
46
}
46
}
47
/*! \brief utility function that skips printable ascii chars */
47
/*! \brief utility function that skips printable ascii chars */
48
inline char *eat_printable(char *at, char *over)
48
static inline char *eat_printable(char *at, char *over)
49
{
49
{
50
    while ((at < over) && ((*at == '\t') || ((*at >= 32) && (*at <= 126))))
50
    while ((at < over) && ((*at == '\t') || ((*at >= 32) && (*at <= 126))))
51
       at++;
51
       at++;

Return to bug 199630