Advertisement
abouchez

UniqueRawUTF8

May 24th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.19 KB | None | 0 0
  1. function UniqueRawUTF8(var UTF8: RawUTF8): pointer; inline;
  2. begin
  3.   {$ifdef FPC}
  4.   UniqueString(UTF8); // @UTF8[1] won't call UniqueString() under FPC :(
  5.   {$endif}
  6.   result := @UTF8[1];
  7. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement