TRUNC(3) BSD Library Functions Manual TRUNC(3)NAME
trunc, truncf, truncl -- nearest integral value with magnitude less than or equal to |x|
LIBRARY
Math Library (libm, -lm)
SYNOPSIS
#include <math.h>
double
trunc(double x);
float
truncf(float x);
long double
truncl(long double x);
DESCRIPTION
The trunc(), truncf(), and truncl() functions return the nearest integral value with magnitude less than or equal to |x|. They are equiva-
lent to rint(), rintf(), and rintl(), respectively, in the FE_TOWARDZERO rounding mode.
SEE ALSO ceil(3), fesetround(3), floor(3), math(3), nextafter(3), rint(3), round(3)STANDARDS
The trunc(), truncf(), and truncl() functions conform to ISO/IEC 9899:1999 (``ISO C99'').
HISTORY
These routines first appeared in FreeBSD 5.3.
BSD April 16, 2005 BSD
Check Out this Related Man Page
TRUNC(3) Linux Programmer's Manual TRUNC(3)NAME
trunc, truncf, truncl - round to integer, toward zero
SYNOPSIS
#include <math.h>
double trunc(double x);
float truncf(float x);
long double truncl(long double x);
Link with -lm.
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
trunc(), truncf(), truncl():
_XOPEN_SOURCE >= 600 || _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L;
or cc -std=c99
DESCRIPTION
These functions round x to the nearest integer not larger in absolute value.
RETURN VALUE
These functions return the rounded integer value.
If x is integral, infinite, or NaN, x itself is returned.
ERRORS
No errors occur.
VERSIONS
These functions first appeared in glibc in version 2.1.
ATTRIBUTES
Multithreading (see pthreads(7))
The trunc(), truncf(), and truncl() functions are thread-safe.
CONFORMING TO
C99, POSIX.1-2001.
NOTES
The integral value returned by these functions may be too large to store in an integer type (int, long, etc.). To avoid an overflow, which
will produce undefined results, an application should perform a range check on the returned value before assigning it to an integer type.
SEE ALSO ceil(3), floor(3), lrint(3), nearbyint(3), rint(3), round(3)COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
2013-06-21 TRUNC(3)
I have some processes that show a long file path as part of the process name and the process name gets truncated off.
Does anyone know how to get the full output from the `ps`command so that I can see the whole process name? (9 Replies)
Hi
Problem of ps on Solaris 8 and 9
Perhaps a silly question but I can't find a solution.
the output of the command ps -ef is truncated.
I've tried to change the terminal settings with stty putting
a big number of colums: no change.
Following the man page of ps i have set the variable... (8 Replies)
Hi,
I have a program that gets called from the front end of my application. Actually it creates some temporary files and uses them and deletes them at last. But sometimes, say once in 6 times, some of these temporary files are getting truncated in the middle and because of this my program is... (9 Replies)
Hi,
I was working on the truncate oracle table shell script. The script is supplied with one table name as a parameter and I would like to change it so that it is passed a file name with a list of tables. And the script needs to truncate tables one by one by looping through the file. In other... (10 Replies)
Hi,
I have files with names like file1.txt.txt.txt.txt and file2.txt.txt.txt.txt.txt............ (random infinite number of .txt exist).
how to truncate (mv) their names to ones with single .txt extension like file1.txt and file1.txt ? In other words, how to extract the filename upto first... (12 Replies)
I am using FC6 just in case it matters, though i hope it doesn't.
If i have a file or some files that i want to truncate the filename of, so that it is only a certain number of characters in length, how would i do that on the command line?
Also, just to make it more interesting, say i... (11 Replies)
hi
i'm a bit stuck trying to find the correct syntax in order to run a cron job which just truncates all info from a single table in my database
i have a main database - db1
and i have a table in that database - userips
i wish to create a cron job that truncates or removes all the info... (9 Replies)
Hello all.
I would like to make a script (or two shell scripts) that will do the following.
I need the maximum file name and directory name to be 38 characters long.
As well, if shortening the file name ends up making all of the files in that directory have the same name, then I would like... (9 Replies)
ps -eo pid,ppid,uid,user,args
If i use above command on any of my sol boxes,i see that fifth column (args or COMMAND) is truncated.
Is there a way of getting full details in this column ,like we have in AIX?
Regards
Abhi (13 Replies)
Hi everyone,
I have a question for you, I'm trying to create a script that will automate creating loading screens for the iPhone.
So what I need to do, is list the directories inside /var/mobile/Applications and scan inside those, for the .app directory inside each. Take that .app name... (15 Replies)
Hello:
I have a large file which contains lines like the following:
1/t123ab, &Xx:1:1234:12345:123456@ABCDEFG... at -$100.00%
/t is a tab, spaces are as indicated
the string "&Xx:1:1234:12345:123456$ABCDEFG..." has a slightly variable number of numbers and letters, but it always starts... (9 Replies)
Hi,
I have Solaris-10 server. /usr/ucb/ps auxww is showing full path if I am running it from root. But if I run it from non-root user, its output is truncated. I don't want to use any other alternate command.
Please suggest, what can be its solution.
Terminal is set to term. (21 Replies)
I want to remove from a file the trailing null characters (0x00) and stop doing so when a different byte is found (which should not be deleted), and either put the result to the same file or a different one.
Any ideas? (9 Replies)