Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

types32.h(3head) [redhat man page]

types32.h(3HEAD)                                                      Headers                                                     types32.h(3HEAD)

NAME
types32.h, types32 - fixed-width data types SYNOPSIS
#include <sys/types32.h> DESCRIPTION
The following fixed-width data types defined in <sys/types32.h> correspond to the sign and sizes of types in the 32-bit environment that can be used for compatibility and interoperability purposes in either the 32-bit or 64-bit environment. typedef int32_t blkcnt32_t typedef uint32_t caddr32_t typedef int32_t clock32_t typedef int32_t daddr32_t typedef uint32_t dev32_t typedef uint32_t fsblkcnt32_t typedef uint32_t fsfilcnt32_t typedef int32_t gid32_t typedef int32_t id32_t typedef uint32_t ino32_t typedef int32_t key32_t typedef uint32_t major32_t typedef uint32_t minor32_t typedef uint32_t mode32_t typedef uint32_t nlink32_t typedef int32_t pid32_t typedef uint32_t rlim32_t typedef uint32_t size32_t typedef int32_t ssize32_t typedef time32_t int32_t typedef uid32_t int32_t SunOS 5.10 30 Oct 1997 types32.h(3HEAD)

Check Out this Related Man Page

types32.h(3HEAD)                                                      Headers                                                     types32.h(3HEAD)

NAME
types32.h, types32 - fixed-width data types SYNOPSIS
#include <sys/types32.h> DESCRIPTION
The following fixed-width data types defined in <sys/types32.h> correspond to the sign and sizes of types in the 32-bit environment that can be used for compatibility and interoperability purposes in either the 32-bit or 64-bit environment. typedef int32_t blkcnt32_t typedef uint32_t caddr32_t typedef int32_t clock32_t typedef int32_t daddr32_t typedef uint32_t dev32_t typedef uint32_t fsblkcnt32_t typedef uint32_t fsfilcnt32_t typedef int32_t gid32_t typedef int32_t id32_t typedef uint32_t ino32_t typedef int32_t key32_t typedef uint32_t major32_t typedef uint32_t minor32_t typedef uint32_t mode32_t typedef uint32_t nlink32_t typedef int32_t pid32_t typedef uint32_t rlim32_t typedef uint32_t size32_t typedef int32_t ssize32_t typedef time32_t int32_t typedef uid32_t int32_t SunOS 5.10 30 Oct 1997 types32.h(3HEAD)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

How to typedef

I want to declare char ch as ch_9 with the help of the typedef statement. Thanks (1 Reply)
Discussion started by: krishna_sicsr
1 Replies

2. Shell Programming and Scripting

summing up the fields in fixed width file

Hi, I have a fixed width file with some records as given below: " 1000Nalsdjflj243324jljlj" "-0300Njfowjljl309933fsf" " 0010Njsfsjklj342344fsl" I want to sum-up first field values(i.e from 2nd character to 6th character)of each record. so for the above file i want to add (1000 - 300+... (2 Replies)
Discussion started by: srilaxmi
2 Replies

3. Programming

typedef struct forward declaration

I've google a bit about this and couldn't find an answer. Actually I read that it can't be done. Basically I've defined the following structure and typedef it as follows. stuct Name { }; typdef struct Name Name. and right after it, defined some API that use it. void blabla(Name*... (6 Replies)
Discussion started by: emitrax
6 Replies

4. Shell Programming and Scripting

Apply condition on fixed width file and filter records

Dear members.. I have a fixed width file. Requirement is as below:- 1. Scan each record from this fixed width file 2. Check for value under field no "6" equals to "ABC". If yes, then filter this record into the output file Please suggest a unix command to achieve this, my guess awk might... (6 Replies)
Discussion started by: sureshg_sampat
6 Replies

5. Programming

typedef help

Hi! This is part of my my code : typedef struct{ int x; char na; char sur; } Stu; typedef struct{ Stu *arr; int size; int sort; } Stus; I want to ask how can i free() the matrix arr. I tried free(arr), free(Stus.arr) and i get errors with gcc. My problem, in... (3 Replies)
Discussion started by: giampoul
3 Replies

6. UNIX for Dummies Questions & Answers

how to find lenght of fixed width file record?

actually i am trying to find the lenght of fixed width file record reading from teradata db but its not working can u guys help me out? code which i wrote--- colmn_lngth=`cat $RPT_FILE | awk -F~ '{print $1}'` rm $RPT_FILE while read line do result=`echo $line | wc -m` ... (0 Replies)
Discussion started by: Seshendranath
0 Replies