|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 25.76 GB of 70.42 GB (36.58%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
numlib/
- drwxrwxrwx
|
Viewing file: strsize.c (1.3 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* ** Copyright 2001 Double Precision, Inc. ** See COPYING for distribution information. */
#if HAVE_CONFIG_H #include "config.h" #endif #include "numlib.h" #include <string.h>
static void cat_n(char *buf, unsigned long n) { char bb[NUMBUFSIZE+1]; char *p=bb+sizeof(bb)-1;
*p=0; do { *--p = "0123456789"[n % 10]; n=n/10; } while (n); strcat(buf, p); }
char *libmail_str_sizekb(unsigned long n, char *sizebuf) { /* If size is less than 1K bytes, display it as 0.xK */
if (n < 1024) { strcpy(sizebuf, "0."); cat_n(sizebuf, (int)(10 * n / 1024 )); strcat(sizebuf, "K"); } /* If size is less than 1 meg, display is as xK */
else if (n < 1024 * 1024) { *sizebuf=0; cat_n(sizebuf, (unsigned long)(n+512)/1024); strcat(sizebuf, "K"); }
/* Otherwise, display in megabytes */
else { unsigned long nm=(double)n / (1024.0 * 1024.0) * 10;
*sizebuf=0; cat_n( sizebuf, nm / 10); strcat(sizebuf, "."); cat_n( sizebuf, nm % 10); strcat(sizebuf, "M"); }
return (sizebuf); }
|