FACT++  1.0
void sprintf_html ( char *  str,
int  n,
int  value 
)

Definition at line 1070 of file webDid.c.

References i, and sprintf().

Referenced by print_service_char(), print_service_double(), print_service_float(), print_service_longlong(), print_service_short(), and print_service_standard().

1071 {
1072  char tmp[80];
1073  int min, i;
1074 
1075  str[0] = '\0';
1076  min = sprintf(tmp,"%d",value);
1077  for(i = 0; i < (n-min); i++)
1078  {
1079  strcat(str,"&nbsp");
1080  }
1081  strcat(str, tmp);
1082 }
int i
Definition: db_dim_client.c:21
char str[80]
Definition: test_client.c:7
sprintf(name1,"NewService%d", i)

+ Here is the call graph for this function:

+ Here is the caller graph for this function: