# _CP_str_null

_CP_str_null points to a null length
string. It should be used for reading only, to initialize a pointer
with a pointer to a null string.

Warning: Never write into _CP_str_null.

## Example(s)

```
CPSTR * s = _CP_str_null;
```

## See also

- [C functions overview](https://d3codex.com/cfunctions/c-functions-overview/)

---
Source: https://d3codex.com/cfunctions/cp-str-null/ - part of the D3Codex reference.
