| 306 | //========================================================================== |
| 307 | |
| 308 | static FStringProd *NewStringProd (const char *str) |
| 309 | { |
| 310 | FStringProd *prod = (FStringProd *)M_Malloc (sizeof(FStringProd)+strlen(str)); |
| 311 | prod->Type = PROD_String; |
| 312 | strcpy (prod->Value, str); |
| 313 | return prod; |
| 314 | } |
| 315 | |
| 316 | //========================================================================== |
| 317 | // |
no test coverage detected