freebsd-dev/contrib/smbfs/smbutil/common.h
Tim J. Robbins c69db88340 Remove the # ("stringify") operator from the printf() arguments in
the iprintf macro. It was causing the actual format string and
variable names to be written out, instead of substituting the values
of the variables into the format string.
2003-08-23 13:05:13 +00:00

22 lines
544 B
C

/* $FreeBSD$ */
#define iprintf(ident,args...) do { printf("%-" # ident "s", ""); \
printf(args);}while(0)
extern int verbose;
int cmd_dumptree(int argc, char *argv[]);
int cmd_login(int argc, char *argv[]);
int cmd_logout(int argc, char *argv[]);
int cmd_lookup(int argc, char *argv[]);
int cmd_print(int argc, char *argv[]);
int cmd_view(int argc, char *argv[]);
void login_usage(void);
void logout_usage(void);
void lookup_usage(void);
void print_usage(void);
void view_usage(void);
#ifdef APPLE
extern int loadsmbvfs();
#endif