| 446 | } |
| 447 | |
| 448 | int FLSharedKeys_Encode(FLSharedKeys sk, FLString keyStr, bool add) FLAPI { |
| 449 | int intKey; |
| 450 | if (!(add ? sk->encodeAndAdd(keyStr, intKey) : sk->encode(keyStr, intKey))) |
| 451 | intKey = -1; |
| 452 | return intKey; |
| 453 | } |
| 454 | |
| 455 | |
| 456 | FLSharedKeyScope FLSharedKeyScope_WithRange(FLSlice range, FLSharedKeys sk) FLAPI { |
nothing calls this directly
no test coverage detected