### Affected rules - `DIR-5-1` - `RULE-4-1-3` ### Description Just a typo causing us to not mark the function `strtok` as non-reentrant ### Example <add an example of code that illustrates the problem> ```cpp void f() { strtok(...); // non-reentrant } ```
Affected rules
DIR-5-1RULE-4-1-3Description
Just a typo causing us to not mark the function
strtokas non-reentrantExample
```cpp void f() { strtok(...); // non-reentrant } ```