removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

3
Printf/Printf.sol Normal file
View File

@@ -0,0 +1,3 @@
<Solution name="Printf">
<Project name="Printf" path="Printf\Printf.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,53 @@
// :CATEGORY:Printf
// :NAME:Printf
// :AUTHOR:Vince Bosen
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:39:00
// :ID:658
// :NUM:895
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Printf
// :CODE:
//Created by: Vince
string format(string text, list args)
{
integer len=(args!=[]);
if(len==0)
{
return text;
}
else{
string ret=text;
integer i;
for(i=0;i<len;i++)
{
integer pos=llSubStringIndex(ret,"{"+(string)i+"}");
if(pos!=-1)
{
ret=llDeleteSubString(ret,pos,pos+llStringLength("{"+(string)i+"}")-1);
ret=llInsertString(ret,pos,llList2String(args,i));
}
else
{

6
Printf/Printf/Printf.prj Normal file
View File

@@ -0,0 +1,6 @@
<Project name="Printf" guid="D8023787-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8023870-6C00-1014-B904-200204C60A89">
<Script name="Printf_1.lsl" guid="D8025308-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>