Function convertCTypeToStructFormatCharacter

  • Converts a C type to its corresponding struct format character.

    Returns

    A string representing the struct format equivalent of the given C type. For example, int8_t becomes b, uint16_t becomes H, char[24] becomes 24s, etc.

    Throws

    Error if the given C type is not recognized.

    Parameters

    • cType: string

      The C type as a string (e.g., int8_t, uint32_t, char[24], etc.).

    Returns string

Generated using TypeDoc