Linux Manuals session 3

Section 3: library functions

  • |

    ANTLR3_ARBORETUM_struct (3) Linux Manual Page

    ANTLR3_ARBORETUM_struct – ANTLR3 Tree factory interface to create lots of trees efficiently rather than creating and freeing lots of little bits of memory. Synopsis#include <antlr3commontree.h> Data Fieldsvoid(* close )(struct ANTLR3_ARBORETUM_struct *factory) Pointer to a function the destroys the factory. pANTLR3_BASE_TREE(* newFromToken )(struct ANTLR3_ARBORETUM_struct *factory, pANTLR3_COMMON_TOKEN token) pANTLR3_BASE_TREE(* newFromTree )(struct ANTLR3_ARBORETUM_struct *factory, pANTLR3_COMMON_TREE tree) pANTLR3_BASE_TREE(* newTree…

  • |

    ANTLR3_ARBORETUM (3) Linux Manual Page

    ANTLR3_ARBORETUM – Tree Factory Class Definition – Typedefstypedef struct ANTLR3_ARBORETUM_struct * pANTLR3_ARBORETUM Pointer to an instantiation of ‘class’ ANTLR3_ARBORETUM. Typedef Documentationtypedef struct ANTLR3_ARBORETUM_struct* pANTLR3_ARBORETUMPointer to an instantiation of ‘class’ ANTLR3_ARBORETUM. AuthorGenerated automatically by Doxygen for ANTLR3C from the source code.

  • |

    ANTLR3_API (3) Linux Manual Page

    include/antlr3defs.h – Basic type and constant definitions for ANTLR3 Runtime. Synopsis#include <antlr3errors.h> #include <antlr3config.h> #include <stdio.h> #include <antlr3interfaces.h> #include <antlr3convertutf.h> Defines#define _stat stat #define ANTLR3_API #define ANTLR3_API #define ANTLR3_AVERAGE #define ANTLR3_CALLOC(numEl, elSize) calloc (numEl, (size_t)(elSize)) Default definition of ANTLR3_CALLOC. #define ANTLR3_CDECL #define ANTLR3_CLOSESOCKET close #define ANTLR3_ENCODING_LATIN1 0 #define ANTLR3_ENCODING_UCS2 1 #define ANTLR3_ENCODING_UTF32 3 #define ANTLR3_ENCODING_UTF8…

  • |

    A (3) Linux Manual Page

    QuantLib::AbcdAtmVolCurve – Abcd-interpolated at-the-money (no-smile) volatility curve. Synopsis#include <ql/experimental/volatility/abcdatmvolcurve.hpp> Inherits QuantLib::BlackAtmVolCurve, and QuantLib::LazyObject. Public Member FunctionsAbcdAtmVolCurve (Natural settlementDays, const Calendar &cal, const std::vector< Period > &optionTenors, const std::vector< Handle< Quote > > &volsHandles, const std::vector< bool > inclusionInInterpolationFlag=std::vector< bool >(1, true), BusinessDayConvention bdc=Following, const DayCounter &dc=Actual365Fixed()) floating reference date, floating market data std::vector< Real >…

  • |

    strcpy (3) Linux Manual Page

    strcpy, strncpy – copy a string Synopsis#include <string.h> char *strcpy(char *dest, const char *src); char *strncpy(char *dest, const char *src, size_t n);DescriptionThe strcpy() function copies the string pointed to by src, including the terminating null byte (‘\0’), to the buffer pointed to by dest. The strings may not overlap, and the destination string dest must…

  • |

    malloc (3) Linux Manual Page

    malloc, free, calloc, realloc, reallocarray – allocate and free dynamic memory Synopsis#include <stdlib.h> void *malloc(size_t size); void free(void *ptr); void *calloc(size_t nmemb, size_t size); void *realloc(void *ptr, size_t size); void *reallocarray(void *ptr, size_t nmemb, size_t size);Feature Test Macro Requirements for glibc (see feature_test_macros(7)): reallocarray():     Since glibc 2.29:         _DEFAULT_SOURCE     Glibc 2.28 and earlier:         _GNU_SOURCE DescriptionThe malloc()…

  • |

    printf (3) Linux Manual Page

    printf, fprintf, dprintf, sprintf, snprintf, vprintf, vfprintf, vdprintf, vsprintf, vsnprintf – formatted output conversion Synopsis#include <stdio.h> int printf(const char *format, …); int fprintf(FILE *stream, const char *format, …); int dprintf(int fd, const char *format, …); int sprintf(char *str, const char *format, …); int snprintf(char *str, size_t size, const char *format, …); #include <stdarg.h> int vprintf(const…