###### (This function is part of SDL_rtf, a separate library from SDL.)
# RTF_GetSubject

Get the subject of an RTF document.

## Header File

Defined in [<SDL3_rtf/SDL_rtf.h>](https://github.com/libsdl-org/SDL_rtf/blob/main/include/SDL3_rtf/SDL_rtf.h)

## Syntax

```c
const char * RTF_GetSubject(RTF_Context *ctx);
```

## Function Parameters

|                              |         |                           |
| ---------------------------- | ------- | ------------------------- |
| [RTF_Context](RTF_Context) * | **ctx** | the RTF context to query. |

## Return Value

(const char *) Returns the document subject in UTF-8 encoding.

## Remarks

The returned string is part of the [RTF_Context](RTF_Context), and should
not be modified or freed by the application. The pointer remains valid
until the [RTF_Context](RTF_Context) is freed.

## Version

This function is available since SDL_rtf 3.0.0.

----
[CategoryAPI](CategoryAPI), [CategoryAPIFunction](CategoryAPIFunction)