Functions4U: Added functions. Changes in include org.

git-svn-id: svn://ultimatepp.org/upp/trunk@2706 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2010-09-18 14:25:39 +00:00
parent 41bc60beab
commit 2886122156
7 changed files with 1214 additions and 1115 deletions

View file

@ -189,7 +189,7 @@ static void offtout(off_t x,u_char *buf)
if(x<0) y=-x; else y=x;
buf[0]=y%256;y-=buf[0];
buf[0]=y%256;y-=buf[0];
y=y/256;buf[1]=y%256;y-=buf[1];
y=y/256;buf[2]=y%256;y-=buf[2];
y=y/256;buf[3]=y%256;y-=buf[3];