I’m reading documentation for CFITSIO (C library for working with FITS images and other astronomical image data) when I come across an odd function definition.
int fits_movrel_hdu / ffmrhd
(fitsfile *fptr, int nmove, > int *hdutype, int *status)
My question is what is the function of the “>” symbol in the third argument, int *hdutype. I see it occurs in many other functions in this library, but I have never come across it in any other API or C Code that I can recall.
You can see more examples of this being used at Hawaii’s Telescope Software Page
Quote from Advanced Interface Routines (the emphasis is mine) (click "Up" in the page you linked to)