CS318 - Pintos
Pintos source browser for JHU CS318 course
Macros | Typedefs
off_t.h File Reference
#include <stdint.h>
Include dependency graph for off_t.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define PROTd   PRId32
 Format specifier for printf(), e.g. More...
 

Typedefs

typedef int32_t off_t
 An offset within a file. More...
 

Macro Definition Documentation

◆ PROTd

#define PROTd   PRId32

Format specifier for printf(), e.g.

: printf ("offset=%"PROTd"\n", offset); filesys/off_t.h

Definition at line 13 of file off_t.h.

Typedef Documentation

◆ off_t

typedef int32_t off_t

An offset within a file.

This is a separate header because multiple headers want this definition but not any others.

Definition at line 9 of file off_t.h.