锘??xml version="1.0" encoding="utf-8" standalone="yes"?>91秦先生久久久久久久,精品久久久久久中文字幕人妻最新,av午夜福利一片免费看久久http://www.shnenglu.com/dyj057/archive/2008/05/09/38074.html#49295wuxunfengwuxunfengFri, 09 May 2008 05:05:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/05/09/38074.html#49295鏈変釜闂鎯抽棶涓涓嬨傚鏋?INI鏂囦歡涓紝鍚屼竴涓猄ECTION涓紝鏈夊嚑涓悓鏍風殑KEY錛岄偅涔堣鍙栫殑鏃跺欙紝浼氳鍙栧摢涓狵EY鍛紝鍙互寰幆璇誨彇鍚?渚嬶細
[SECTION]
key=data
key=data
key=data
key1=data2

wuxunfeng 2008-05-09 13:05 鍙戣〃璇勮
]]>
鍑芥暟搴撴湁榪欎釜鍔熻兘鍚楋紵http://www.shnenglu.com/dyj057/archive/2008/05/09/3012.html#49294wuxunfengwuxunfengFri, 09 May 2008 05:03:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/05/09/3012.html#49294 鏈変釜闂鎯抽棶涓涓嬨傚鏋?INI鏂囦歡涓紝鍚屼竴涓猄ECTION涓紝鏈夊嚑涓悓鏍風殑KEY錛岄偅涔堣鍙栫殑鏃跺欙紝浼氳鍙栧摢涓狵EY鍛紝鍙互寰幆璇誨彇鍚?渚嬶細
[SECTION]
key=data
key=data
key=data
key1=data2

wuxunfeng 2008-05-09 13:03 鍙戣〃璇勮
]]>
re: 鍙戝竷璺ㄥ鉤鍙癐NI鏂囦歡璇誨啓API(C++鐗堟湰) V0.2.1http://www.shnenglu.com/dyj057/archive/2008/04/26/38074.html#48189luoweiliuzluoweiliuzSat, 26 Apr 2008 08:09:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/04/26/38074.html#48189[name]
Row1=J ???????琚ぇ10 鐨勬浛鎹?
Row2=B
Row3=C
Row4=D
Row5=E
Row6=F
Row7=G
Row8=H
Row9=I
Row10=J ???????榪欎釜鍦版柟寮濮嬩互鍚庢病鏈夎緭鍑猴紝浣嗘槸瑕嗙洊浜?Row1 鐨勫?
Row11=K


luoweiliuz 2008-04-26 16:09 鍙戣〃璇勮
]]>
re: C++瀹岀編瀹炵幇Singleton妯″紡http://www.shnenglu.com/dyj057/archive/2008/03/25/346.html#45384kendankendanTue, 25 Mar 2008 12:33:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/03/25/346.html#45384

kendan 2008-03-25 20:33 鍙戣〃璇勮
]]>
re: 鍙戝竷璺ㄥ鉤鍙癐NI鏂囦歡璇誨啓API(C++鐗堟湰) V0.2.1http://www.shnenglu.com/dyj057/archive/2008/03/25/38074.html#45348璞嗚姳楸肩墖璞嗚姳楸肩墖Tue, 25 Mar 2008 07:03:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/03/25/38074.html#45348

int IniFile::parse_file(const char *section, const char *key, const char *buf,int *sec_s,int *sec_e,
int *key_s,int *key_e, int *value_s, int *value_e)
{
const char *p = buf;
int i=0;

assert(buf!=NULL);
assert(section != NULL && strlen(section));
assert(key != NULL && strlen(key));

*sec_e = *sec_s = *key_e = *key_s = *value_s = *value_e = -1;

while( !end_of_string(p[i]) ) {
//find the section
if( ( 0==i || newline(p[i-1]) ) && left_barce(p[i]) )
{
int section_start=i+1;

//find the ']'
do {
i++;
} while( !right_brace(p[i]) && !end_of_string(p[i]));

if( 0 == strncmp(p+section_start,section, i-section_start)) {
int newline_start=0;

i++;

//Skip over space char after ']'
while(isspace(p[i])) {
i++;
}

//find the section
*sec_s = section_start;
*sec_e = i;

while( ! (newline(p[i-1]) && left_barce(p[i]))
&& !end_of_string(p[i]) ) {
int j=0;
//get a new line
newline_start = i;

while( !newline(p[i]) && !end_of_string(p[i]) ) {
i++;
}

//now i is equal to end of the line
j = newline_start;
int valid = j;

if('#' != p[j]) //skip over comment
{
while(j < i && p[j]!='=') {
j++;

if(' ' != p[j] && '\t' != p[j] && '=' != p[j])
valid = j;
if('=' == p[j]) {
if(strncmp(key,p+newline_start,valid-newline_start)==0)
{
//find the key ok
*key_s = newline_start;
*key_e = j-1;

valid = j+1;
while(' ' == p[valid] || '\t' == p[valid])
valid++;
*value_s = valid;
*value_e = i;

return 1;
}
}
}
}

i++;
}
}
}
else
{
i++;
}
}
return 0;
}



璞嗚姳楸肩墖 2008-03-25 15:03 鍙戣〃璇勮
]]>
re: 鍙戝竷璺ㄥ鉤鍙癐NI鏂囦歡璇誨啓API(C++鐗堟湰) V0.2.1http://www.shnenglu.com/dyj057/archive/2008/03/25/38074.html#45345璞嗚姳楸肩墖璞嗚姳楸肩墖Tue, 25 Mar 2008 06:02:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/03/25/38074.html#45345浣垮叾鑳藉垎鏋?br>name = value
榪欑=涓よ竟甯︽湁絀烘牸鎴朶t鐨勬牸寮?



int IniFile::parse_file(const char *section, const char *key, const char *buf,int *sec_s,int *sec_e,
int *key_s,int *key_e, int *value_s, int *value_e)
{
const char *p = buf;
int i=0;

assert(buf!=NULL);
assert(section != NULL && strlen(section));
assert(key != NULL && strlen(key));

*sec_e = *sec_s = *key_e = *key_s = *value_s = *value_e = -1;

while( !end_of_string(p[i]) ) {
//find the section
if( ( 0==i || newline(p[i-1]) ) && left_barce(p[i]) )
{
int section_start=i+1;

//find the ']'
do {
i++;
} while( !right_brace(p[i]) && !end_of_string(p[i]));

if( 0 == strncmp(p+section_start,section, i-section_start)) {
int newline_start=0;

i++;

//Skip over space char after ']'
while(isspace(p[i])) {
i++;
}

//find the section
*sec_s = section_start;
*sec_e = i;

while( ! (newline(p[i-1]) && left_barce(p[i]))
&& !end_of_string(p[i]) ) {
int j=0;
//get a new line
newline_start = i;

while( !newline(p[i]) && !end_of_string(p[i]) ) {
i++;
}

//now i is equal to end of the line
j = newline_start;
int valid = j;

if('#' != p[j]) //skip over comment
{
while(j < i && p[j]!='=') {
j++;
if('=' == p[j]) {
if(strncmp(key,p+newline_start,valid-newline_start)==0)
{
//find the key ok
*key_s = newline_start;
*key_e = j-1;

while(' ' == p[valid] || '\t' == p[valid])
valid++;
*value_s = valid;
*value_e = i;

return 1;
}
}
if(' ' != p[j] && '\t' != p[j])
valid = j;
}
}

i++;
}
}
}
else
{
i++;
}
}
return 0;
}

璞嗚姳楸肩墖 2008-03-25 14:02 鍙戣〃璇勮
]]>
re: 榪蜂綘鍨媂ML鏂囨。鐢熸垚鍣?ANSI C)http://www.shnenglu.com/dyj057/archive/2008/03/25/18132.html#45326suxiaojacksuxiaojackMon, 24 Mar 2008 23:15:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/03/25/18132.html#45326

suxiaojack 2008-03-25 07:15 鍙戣〃璇勮
]]>
re: ubuntu 7.10鐪熼叿錛屾垜濂藉枩嬈?鏁堟灉鍥懼凡緇忔洿鏂?http://www.shnenglu.com/dyj057/archive/2008/03/06/34758.html#43835-_--_-Thu, 06 Mar 2008 09:35:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/03/06/34758.html#43835

-_- 2008-03-06 17:35 鍙戣〃璇勮
]]>
re: 鍙戝竷璺ㄥ鉤鍙癐NI鏂囦歡璇誨啓API(C鐗堟湰) V0.2.0http://www.shnenglu.com/dyj057/archive/2008/01/23/37958.html#41701yenyenWed, 23 Jan 2008 03:17:00 GMThttp://www.shnenglu.com/dyj057/archive/2008/01/23/37958.html#41701

yen 2008-01-23 11:17 鍙戣〃璇勮
]]>
re: 鎴戠殑璁$畻鏈烘儏緙?/title><link>http://www.shnenglu.com/dyj057/archive/2007/12/27/27349.html#39758</link><dc:creator>Midapex</dc:creator><author>Midapex</author><pubDate>Thu, 27 Dec 2007 12:19:00 GMT</pubDate><guid>http://www.shnenglu.com/dyj057/archive/2007/12/27/27349.html#39758</guid><description><![CDATA[娌¢棶棰橈紝絳夋垜鏈夌┖浜嗭紝鍐欎竴涓笓棰樹粙緇岰GI+XML+jQuery+extjs瀹炵幇Ajax鐨勬枃绔犮?img src ="http://www.shnenglu.com/dyj057/aggbug/39758.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/dyj057/" target="_blank">Midapex</a> 2007-12-27 20:19 <a href="http://www.shnenglu.com/dyj057/archive/2007/12/27/27349.html#39758#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.fwrld.cn" target="_blank">久久WWW免费人成—看片</a>| <a href="http://www.fzlqb.cn" target="_blank">99久久夜色精品国产网站</a>| <a href="http://www.2tou.cn" target="_blank">伊人久久大香线蕉成人</a>| <a href="http://www.iysb.cn" target="_blank">久久精品国产亚洲AV忘忧草18</a>| <a href="http://www.ruannews.com.cn" target="_blank">国内精品久久久久久久久电影网 </a>| <a href="http://www.dsifhjh1.cn" target="_blank">久久亚洲国产成人精品无码区</a>| <a href="http://www.ha-jc.cn" target="_blank">久久青青草视频</a>| <a href="http://www.hkjiajiao.com.cn" target="_blank">久久综合精品国产二区无码</a>| <a href="http://www.fbmz5.cn" target="_blank">成人a毛片久久免费播放</a>| <a href="http://www.ssxgsl.cn" target="_blank">亚洲欧美久久久久9999</a>| <a href="http://www.meisj88.cn" target="_blank">www.久久精品</a>| <a href="http://www.cqmh.com.cn" target="_blank">国产精品久久久久久久久软件</a>| <a href="http://www.grzzc358.cn" target="_blank">国产成人久久精品一区二区三区 </a>| <a href="http://www.shxxwxx.cn" target="_blank">色综合久久夜色精品国产</a>| <a href="http://www.91pang.cn" target="_blank">一本色道久久综合亚洲精品</a>| <a href="http://www.cu76.cn" target="_blank">亚洲国产成人久久综合一区77</a>| <a href="http://www.xuzhou86.cn" target="_blank">老司机国内精品久久久久</a>| <a href="http://www.dlygbx.cn" target="_blank">欧美亚洲国产精品久久高清</a>| <a href="http://www.5748l.cn" target="_blank">成人久久精品一区二区三区</a>| <a href="http://www.dgchengxin.cn" target="_blank">亚洲欧洲中文日韩久久AV乱码</a>| <a href="http://www.yookou.cn" target="_blank">996久久国产精品线观看</a>| <a href="http://www.yc-shop.cn" target="_blank">狠狠色丁香久久婷婷综合_中 </a>| <a href="http://www.weiyan2143.cn" target="_blank">久久婷婷五月综合色高清</a>| <a href="http://www.drxt.com.cn" target="_blank">久久黄色视频</a>| <a href="http://www.qqhaobofangqi.cn" target="_blank">久久国产精品99久久久久久老狼</a>| <a href="http://www.77ns.cn" target="_blank">亚洲午夜久久久影院</a>| <a href="http://www.63552277.cn" target="_blank">久久久亚洲精品蜜桃臀</a>| <a href="http://www.kuaijietao.cn" target="_blank">久久综合综合久久狠狠狠97色88</a>| <a href="http://www.bjxcst.cn" target="_blank">亚洲中文久久精品无码</a>| <a href="http://www.maituogangwan.cn" target="_blank">亚洲欧美日韩精品久久亚洲区 </a>| <a href="http://www.mobilepop.cn" target="_blank">久久久久久久91精品免费观看</a>| <a href="http://www.uushipin.cn" target="_blank">久久精品国产半推半就</a>| <a href="http://www.smtch.cn" target="_blank">99久久99这里只有免费费精品</a>| <a href="http://www.seo30.cn" target="_blank">亚洲精品无码久久久影院相关影片</a>| <a href="http://www.xhqb2000.com.cn" target="_blank">久久久久久国产精品免费免费</a>| <a href="http://www.leyuzhe.cn" target="_blank">国内精品久久久久久麻豆</a>| <a href="http://www.metropolojinjianghotel.cn www.dr-knoell-consult.com.cn www.starlight-caraccessories.cn " target="_blank">国产69精品久久久久99</a>| <a href="http://www.yangshuohappy.cn" target="_blank">国产精品va久久久久久久</a>| <a href="http://www.dnf-video.cn" target="_blank">伊人色综合久久</a>| <a href="http://www.six-dream.cn" target="_blank">久久亚洲av无码精品浪潮</a>| <a href="http://www.iyuhu.cn" target="_blank">国产精品久久久久久久app</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>