#include <stdio.h>
int
{
   const char *str, *str2;
   const char *prologe = "The Cylons were created by man. They rebelled. They "
                         "evolved.";
   const char *prologe2 = "%d Cylon models. %d are known. %d live in secret. "
                          "%d will be revealed.";
   const char *prologe3 = "There are many copies. And they have a plan.";
   printf("%s\n", str);
   printf("%s\n", str);
   printf("%s\n", str);
   printf("%s\n", str2);
   printf("%s\n", str2);
   eina_stringshare_replace(&str, prologe);
   printf("%s\n", str);
   return 0;
}