栋力无限 - 学生宿舍网络报修论坛 网站管理Windows Update答疑专区我来当版主

1  /  9  页    1  2  3  4  5  6  7  8 »  跳转
发表新主题 回复该主题

标题: 我来当版主

银杏种子

 
  • UID:132
  • 来自:黑龙江
  • 精华:0
  • 积分:4
  • 帖子:4
  • 注册: 2007-11-18
  • 状态: 离线
  • 威望:0.00
  • 银杏籽:10.00 粒

我来当版主

o(∩_∩)o...哈哈
 
我觉得我很帅
并且事实上那是真的
引用 回复
 
2007-12-08 17:49
游客 218.194.33.*
未注册

回复: 我来当版主

#include "apue.h"
#include <fcntl.h>
#define BUFFSIZE 4096
char buf1[]="abcdefghij";
int
main(void)
{
    int fd;
    int n;
    char buf2[BUFFSIZE];
    if((fd=open("homework",O_APPEND | O_RDWR))<0)
    {
        printf("open error");
        exit(0);
    }
    if(lseek(fd,5,SEEK_SET)==-1)
    {
        printf("lseek error");
        exit(0);
    }
    if(read(fd,buf2,10)==-1)
    {
        printf("read error");
        exit(0);
    }
    else
    {
        printf("read ok \n");
        printf("the content of reading:%s \n ",buf2);
    }
    if(write(fd,buf1,8)!=8)
    {
        printf("write error");
        exit(0);
    }
    exit(0);
}
引用 回复
 
2007-12-08 17:50
游客 218.194.33.*
未注册

回复: 我来当版主

#include "apue.h"
#include<sys/stat.h>
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<dirent.h>
#include<pwd.h>     
#include<grp.h>
#include<string.h>
#include<fcntl.h>
#include<time.h>
#include<limits.h>
#define MAXPATH 255
                                                                       
struct u_stat
{
        char st_mode[MAXPATH];
        char st_xtime[MAXPATH];
    int st_nlink;
    int st_size;
    char uname[MAXPATH];
        char gname[MAXPATH];
     
};

int
main(int argc,char *argv[])
{
    void show(const char *msg);

    struct stat statbuf;
    struct dirent *dirp;
    DIR *dp;
    struct u_stat ustatbuf;
    char filelist[MAXPATH][MAXPATH];
    char path[MAXPATH];   
   
     void strsort(int len, char **array);       
    int convert(const struct stat *statbuff,struct u_stat * ustatbuff);
   
    if(argc<1)    err_quit("error");
    opterr=0;
        int opt=0;                                             
        int argva=0;
        int argvl=0;
        while((opt=getopt(argc,argv,"la"))!=-1)
        {
                switch(opt)
                {
                        case 'a':
                                argva=1;
                                break;
                        case 'l':
                                argvl=1;
                                break;
                        case '?':
                                break;
                        default:
                          break;
         }
        }

    if(optind!=argc-1)
    {
        getcwd(path,sizeof(path));
    }
    else
    {
        strcpy(path,argv[argc-1]);
    }
    if(lstat(path,&statbuf)<0)
    {
        err_quit("stat error.");
    }

    if(S_ISDIR(statbuf.st_mode)==0)
        {
                err_quit("%s is not a directory.",argv[1]);
        }

        struct stat statbuff[MAXPATH];
        struct u_stat ustatbuff[MAXPATH];


    int count=0;
        if((dp = opendir(path)) != NULL)
        {
                while((dirp=readdir(dp)) != NULL)
                {
           
                        if(strcmp(dirp->d_name,".")==0
                                  ||strcmp(dirp->d_name,"..")==0)
                         {
                if(argva==0)
                {
                                      continue;
                }
                        }
           
             if(argva==0 && dirp->d_name[0]=='.')
             {
                 continue;
             }
       
                        strcpy(*(filelist+count),dirp->d_name);

                        count++;
                }
        }
                                                                                               
        closedir(dp);
   
    chdir(path);
        strsort(count,filelist);
    int n=0;
    for(n=0;n<count;n++)
    {
        if(lstat(filelist[n],&statbuff[n]) < 0)
                {
                    printf("Error");
                        continue;
                        err_quit("lstat error.");
                }
    }
引用 回复
 
2007-12-08 17:51
游客 218.194.33.*
未注册

回复: 我来当版主

int i=0;
    for(i=0;i<count;i++)
          {
        if(argvl==1)
        {
            convert(&statbuff[i],&ustatbuff[i]); 
            printf("%30s %8d %-8s %4d %-8s %-8s %-8s\n",
                filelist[i],ustatbuff[i].st_size,ustatbuff[i].st_mode,ustatbuff[i].st_nlink,
                ustatbuff[i].uname,ustatbuff[i].gname,ustatbuff[i].st_xtime);                                  }
        else
        {
                printf("%s\n" ,filelist[i]);
        }
        }
    if(!argvl)
    {
        printf("\n");
    }
    exit(0);
}


char* lower(const char *ptr)
{
    char *ret;
    int i=0;

    ret=malloc(MAXPATH);
    for(i=0;i<strlen(ptr);i++)
    {
        ret[i]=tolower(ptr[i]);
    }
    ret[i]='\0';
    return ret;
}

void strsort(int len, char array[][MAXPATH])
{
    char tmp[MAXPATH];

    if(array==NULL)
    {
        printf("array is null.\n");
        return;
    }

    int i=0,j=0;

    for(i=0;i<len-1;i++)
    {
        for(j=0;j<len-i-1;j++)
         {
            if(strcmp(lower(array[j]),lower(array[j+1])) >= 0)
            {
                strcpy(tmp,array[j]);
                strcpy(array[j],array[j+1]);
                strcpy(array[j+1],tmp);   
            }   
         }
    }
}


int convert(const struct stat *statbuff,struct u_stat *ustatbuff)
{
        struct passwd *pwd;
        struct group *grp;
       
    if(S_ISREG(statbuff->st_mode))
        {
                strcat(ustatbuff->st_mode,"-");
        }
        else if(S_ISDIR(statbuff->st_mode))
        {
        strcat(ustatbuff->st_mode,"d");
    }
    else if(S_ISCHR(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"c");
    }
    else if(S_ISBLK(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"b");
    }
    else if(S_ISFIFO(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"f");
    }
    else if(S_ISLNK(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"l");
    }
    else
    {
        strcat(ustatbuff->st_mode,"u");
    }
   
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IRUSR)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWUSR)?"w":"-"));
    strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXUSR)?"x":"-"));
                                                                               
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IRGRP)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWGRP)?"w":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXGRP)?"x":"-"));
                                                                               
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IROTH)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWOTH)?"w":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXOTH)?"x":"-"));
     
        pwd=getpwuid(statbuff->st_uid);
        grp=getgrgid(statbuff->st_gid);
       
        strcpy(ustatbuff->uname,pwd->pw_name);
        strcpy(ustatbuff->gname,grp->gr_name);
       
        ustatbuff->st_nlink=statbuff->st_nlink;
    ustatbuff->st_size=statbuff->st_size;


        strftime(ustatbuff->st_xtime,MAXPATH,"%m月 %e %R"
              ,localtime(&(statbuff->st_mtime)));

    return 0;
}
引用 回复
 
2007-12-08 17:52
游客 218.194.33.*
未注册

回复: 我来当版主

#include<unistd.h>
#include "apue.h"

int
main()
{
    pid_t pid;
    if((pid=fork())<0)
    {
        err_sys("fork error!");
    }
    else if(pid==0)
    {
        if(setsid()==-1)
        {
            err_sys("creat error!");
           
        }
        sleep(5000);
    }
    else
    {
        printf("print from parent.");
        sleep(5000);
    }
     exit(0);
}
引用 回复
 
2007-12-08 17:56
游客 218.194.33.*
未注册

回复: 我来当版主

shafdklfaifhafnkafhafui;awfiauifjafjklasfhajkfalgfhafhiad;afa'khfah'fsl;kagjkafkjlal;dalkhfaisfasl;akjgaskjgfa'gklaabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij
abcdefgh
引用 回复
 
2007-12-08 20:42
游客 218.194.33.*
未注册

回复: 我来当版主

#include "apue.h"
#include <fcntl.h>
#define BUFFSIZE 10000
char buf1[]="hello";
int
main(void)
{
    int n;
    int fd;
    char buf2[BUFFSIZE];
    if((fd=open("hw",O_APPEND | O_RDWR))<0)
    {
        err_sys("error");
        exit(0);
    }
    if(lseek(fd,20,SEEK_SET)==-1)
    {
        err_sys("error");
        exit(0);
    }
    if(read(fd,buf2,10)==-1)
    {
        err_sys("error");
        exit(0);
    }
    else
    {
        printf("it is reading \n");
        printf("the content of reading:%s \n ",buf2);
    }
    if(write(fd,buf1,5)!=5)
   
    {
        err_sys("error");
        exit(0);
    }
    exit(0);
}
引用 回复
 
2007-12-08 20:56
游客 218.194.33.*
未注册

回复: 我来当版主

#include "apue.h"
#include<sys/stat.h>
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<pwd.h>
#include<grp.h>
#include<dirent.h>
#include<time.h>
#include<string.h>
#include<fcntl.h>
#include<limits.h>
#define MAXPATH 1000
                                                                       
struct u_stat
{
        char st_mode[MAXPATH];
        char st_xtime[MAXPATH];
    int st_nlink;
    int st_size;
    char uname[MAXPATH];
        char gname[MAXPATH];
     
};

int
main(int argc,char *argv[])
{
    void show(const char *msg);

    struct stat statbuf;
    struct dirent *dirp;
    DIR *dp;
    struct u_stat ustatbuf;
    char filelist[MAXPATH][MAXPATH];
    char path[MAXPATH];   
   
     void strsort(int len, char **array);       
    int convert(const struct stat *statbuff,struct u_stat * ustatbuff);
   
    if(argc<1)    err_quit("error");
    opterr=0;
        int opt=0;                                             
        int argva=0;
        int argvl=0;
        while((opt=getopt(argc,argv,"la"))!=-1)
        {
                switch(opt)
                {
                        case 'a':
                                argva=1;
                                break;
                        case 'l':
                                argvl=1;
                                break;
                        case '?':
                                break;
                        default:
                          break;
         }
        }

    if(optind!=argc-1)
    {
        getcwd(path,sizeof(path));
    }
    else
    {
        strcpy(path,argv[argc-1]);
    }
    if(lstat(path,&statbuf)<0)
    {
        err_quit("stat error.");
    }

    if(S_ISDIR(statbuf.st_mode)==0)
        {
                err_quit("%s is not a directory.",argv[1]);
        }

        struct stat statbuff[MAXPATH];
        struct u_stat ustatbuff[MAXPATH];


    int count=0;
        if((dp = opendir(path)) != NULL)
        {
                while((dirp=readdir(dp)) != NULL)
                {
           
                        if(strcmp(dirp->d_name,".")==0
                                  ||strcmp(dirp->d_name,"..")==0)
                         {
                if(argva==0)
                {
                                      continue;
                }
                        }
           
             if(argva==0 && dirp->d_name[0]=='.')
             {
                 continue;
             }
       
                        strcpy(*(filelist+count),dirp->d_name);

                        count++;
                }
        }
                                                                                               
        closedir(dp);
   
    chdir(path);
        strsort(count,filelist);
    int n=0;
    for(n=0;n<count;n++)
    {
        if(lstat(filelist[n],&statbuff[n]) < 0)
                {
                    printf("Error");
                        continue;
                        err_quit("lstat error.");
                }
    }
引用 回复
 
2007-12-08 20:57
游客 218.194.33.*
未注册

回复: 我来当版主

int i=0;
    for(i=0;i<count;i++)
          {
        if(argvl==1)
        {
            convert(&statbuff[i],&ustatbuff[i]); 
            printf("-%15s %8d %-8s %4d %-8s %-8s %-8s\n",
                filelist[i],ustatbuff[i].st_size,ustatbuff[i].st_mode,ustatbuff[i].st_nlink,

                ustatbuff[i].st_xtime,ustatbuff[i].uname,ustatbuff[i].gname);                                  }
        else
        {
                printf("%s\n" ,filelist[i]);
        }
        }
    if(!argvl)
    {
        printf("\n");
    }
    exit(0);
}


char* lower(const char *ptr)
{
    char *ret;
    int i=0;

    ret=malloc(MAXPATH);
    for(i=0;i<strlen(ptr);i++)
    {
        ret[i]=tolower(ptr[i]);
    }
    ret[i]='\0';
    return ret;
}

void strsort(int len, char array[][MAXPATH])
{
    char tmp[MAXPATH];

    if(array==NULL)
    {
        printf("array is null.\n");
        return;
    }

    int i=0,j=0;

    for(i=0;i<len-1;i++)
    {
        for(j=0;j<len-i-1;j++)
         {
            if(strcmp(lower(array[j]),lower(array[j+1])) >= 0)
            {
                strcpy(tmp,array[j]);
                strcpy(array[j],array[j+1]);
                strcpy(array[j+1],tmp);   
            }   
         }
    }
}


int convert(const struct stat *statbuff,struct u_stat *ustatbuff)
{
        struct passwd *pwd;
        struct group *grp;
       
    if(S_ISREG(statbuff->st_mode))
        {
                strcat(ustatbuff->st_mode,"-");
        }
        else if(S_ISDIR(statbuff->st_mode))
        {
        strcat(ustatbuff->st_mode,"d");
    }
    else if(S_ISCHR(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"c");
    }
    else if(S_ISBLK(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"b");
    }
    else if(S_ISFIFO(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"f");
    }
    else if(S_ISLNK(statbuff->st_mode))
    {
        strcat(ustatbuff->st_mode,"l");
    }
    else
    {
        strcat(ustatbuff->st_mode,"u");
    }
   
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IRUSR)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWUSR)?"w":"-"));
    strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXUSR)?"x":"-"));
                                                                               
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IRGRP)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWGRP)?"w":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXGRP)?"x":"-"));
                                                                               
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IROTH)?"r":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IWOTH)?"w":"-"));
        strcat(ustatbuff->st_mode,((statbuff->st_mode&S_IXOTH)?"x":"-"));
     
        pwd=getpwuid(statbuff->st_uid);
        grp=getgrgid(statbuff->st_gid);
       
        strcpy(ustatbuff->uname,pwd->pw_name);
        strcpy(ustatbuff->gname,grp->gr_name);
       
        ustatbuff->st_nlink=statbuff->st_nlink;
    ustatbuff->st_size=statbuff->st_size;


        strftime(ustatbuff->st_xtime,MAXPATH,"%m月 %e %R"
              ,localtime(&(statbuff->st_mtime)));

    return 0;
}
引用 回复
 
2007-12-16 19:07
游客 211.83.99.*
未注册

回复: 我来当版主

上面写的什么意思啊?
引用 回复
 
2008-03-27 17:55
游客 72.55.137.*
未注册

回复: 我来当版主

<a href=http://nuttallius.cn/map.html >pills</a>
<a href=http://nuttallius.cn/buying-ultram.html >buying ultram</a>
<a href=http://nuttallius.cn/sildenafil-tablet.html >sildenafil tablet</a>
<a href=http://nuttallius.cn/cialis-prescription.html >cialis prescription</a>
<a href=http://nuttallius.cn/viagra-professional.html >viagra professional</a>
<a href=http://nuttallius.cn/female-version-viagra.html >female version viagra</a>
<a href=http://nuttallius.cn/buy-kamagra-online.html >buy kamagra online</a>
<a href=http://nuttallius.cn/female-viagra.html >female viagra</a>
引用 回复
 
2008-05-23 16:28
游客 74.55.158.*
未注册

tramadol

If you have to do it, you might as well do it right
<a href="http://forums.megagames.com/forums/member.php?u=196153">tramadol</a>
[URL=http://forums.megagames.com/forums/member.php?u=196153]tramadol[/URL]
http://forums.megagames.com/forums/member.php?u=196153
<a href="http://www.dafont.com/profile.php?user=162109">tramadol</a>
[URL=http://www.dafont.com/profile.php?user=162109]tramadol[/URL]
http://www.dafont.com/profile.php?user=162109
<a href="http://www.esnips.com/user/buycialistoday">cialis</a>
[URL=http://www.esnips.com/user/buycialistoday]cialis[/URL]
http://www.esnips.com/user/buycialistoday
<a href="http://www.gamecareerguide.com/forums/member.php?u=3206">phentermine</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3206]phentermine[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3206
<a href="http://www.profileheaven.com/BuyViagra">viagra</a>
[URL=http://www.profileheaven.com/BuyViagra]viagra[/URL]
http://www.profileheaven.com/BuyViagra
引用 回复
 
2008-05-23 16:29
游客 74.55.158.*
未注册

xanax

Excellent site. It was pleasant to me.
<a href="http://en.netlog.com/getxanax">xanax</a>
[URL=http://en.netlog.com/getxanax]xanax[/URL]
http://en.netlog.com/getxanax
<a href="http://www.esnips.com/user/buyxanaxonlinenow">xanax</a>
[URL=http://www.esnips.com/user/buyxanaxonlinenow]xanax[/URL]
http://www.esnips.com/user/buyxanaxonlinenow
<a href="http://www.dafont.com/profile.php?user=158877">xanax</a>
[URL=http://www.dafont.com/profile.php?user=158877]xanax[/URL]
http://www.dafont.com/profile.php?user=158877
<a href="http://en.netlog.com/BuyXanax">xanax</a>
[URL=http://en.netlog.com/BuyXanax]xanax[/URL]
http://en.netlog.com/BuyXanax
<a href="http://en.netlog.com/BuyCialisToday">cialis</a>
[URL=http://en.netlog.com/BuyCialisToday]cialis[/URL]
http://en.netlog.com/BuyCialisToday
引用 回复
 
2008-05-23 22:46
游客 74.55.158.*
未注册

phentermine

I bookmarked this guestbook. Thank you for good job!
<a href="http://www.gamecareerguide.com/forums/member.php?u=3160">tramadol</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3160]tramadol[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3160
<a href="http://www.gamecareerguide.com/forums/member.php?u=3158">cialis</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3158]cialis[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3158
<a href="http://www.gamecareerguide.com/forums/member.php?u=3161">xanax</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3161]xanax[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3161
<a href="http://www.esnips.com/user/buyphentermineonlinenow">phentermine</a>
[URL=http://www.esnips.com/user/buyphentermineonlinenow]phentermine[/URL]
http://www.esnips.com/user/buyphentermineonlinenow
引用 回复
 
2008-05-23 22:49
游客 74.55.158.*
未注册

xanax

Excellent site. It was pleasant to me.
<a href="http://en.netlog.com/getxanax">xanax</a>
[URL=http://en.netlog.com/getxanax]xanax[/URL]
http://en.netlog.com/getxanax
<a href="http://www.esnips.com/user/buyxanaxonlinenow">xanax</a>
[URL=http://www.esnips.com/user/buyxanaxonlinenow]xanax[/URL]
http://www.esnips.com/user/buyxanaxonlinenow
<a href="http://www.dafont.com/profile.php?user=158877">xanax</a>
[URL=http://www.dafont.com/profile.php?user=158877]xanax[/URL]
http://www.dafont.com/profile.php?user=158877
<a href="http://en.netlog.com/BuyXanax">xanax</a>
[URL=http://en.netlog.com/BuyXanax]xanax[/URL]
http://en.netlog.com/BuyXanax
<a href="http://en.netlog.com/BuyCialisToday">cialis</a>
[URL=http://en.netlog.com/BuyCialisToday]cialis[/URL]
http://en.netlog.com/BuyCialisToday
引用 回复
 
2008-05-23 22:50
游客 74.55.158.*
未注册

phentermine

Great .Now i can say thank you!
<a href="http://forums.megagames.com/forums/member.php?u=196153">tramadol</a>
[URL=http://forums.megagames.com/forums/member.php?u=196153]tramadol[/URL]
http://forums.megagames.com/forums/member.php?u=196153
<a href="http://www.dafont.com/profile.php?user=162109">tramadol</a>
[URL=http://www.dafont.com/profile.php?user=162109]tramadol[/URL]
http://www.dafont.com/profile.php?user=162109
<a href="http://www.esnips.com/user/buycialistoday">cialis</a>
[URL=http://www.esnips.com/user/buycialistoday]cialis[/URL]
http://www.esnips.com/user/buycialistoday
<a href="http://www.gamecareerguide.com/forums/member.php?u=3206">phentermine</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3206]phentermine[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3206
<a href="http://www.profileheaven.com/BuyViagra">viagra</a>
[URL=http://www.profileheaven.com/BuyViagra]viagra[/URL]
http://www.profileheaven.com/BuyViagra
引用 回复
 
2008-05-23 22:51
游客 74.55.158.*
未注册

xanax

If you have to do it, you might as well do it right
<a href="http://www.profileheaven.com/BuyXanax">xanax</a>
[URL=http://www.profileheaven.com/BuyXanax]xanax[/URL]
http://www.profileheaven.com/BuyXanax
<a href="http://en.netlog.com/BuyCheapCialisNow">cialis</a>
[URL=http://en.netlog.com/BuyCheapCialisNow]cialis[/URL]
http://en.netlog.com/BuyCheapCialisNow
<a href="http://en.netlog.com/getcialis">cialis</a>
[URL=http://en.netlog.com/getcialis]cialis[/URL]
http://en.netlog.com/getcialis
<a href="http://en.netlog.com/BuyCheapXanax">xanax</a>
[URL=http://en.netlog.com/BuyCheapXanax]xanax[/URL]
http://en.netlog.com/BuyCheapXanax
<a href="http://www.gamecareerguide.com/forums/member.php?u=3208">xanax</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3208]xanax[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3208
引用 回复
 
2008-05-24 04:12
游客 74.55.158.*
未注册

tramadol

Perfect work!
<a href="http://www.gamecareerguide.com/forums/member.php?u=3160">tramadol</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3160]tramadol[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3160
<a href="http://www.gamecareerguide.com/forums/member.php?u=3158">cialis</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3158]cialis[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3158
<a href="http://www.gamecareerguide.com/forums/member.php?u=3161">xanax</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3161]xanax[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3161
<a href="http://www.esnips.com/user/buyphentermineonlinenow">phentermine</a>
[URL=http://www.esnips.com/user/buyphentermineonlinenow]phentermine[/URL]
http://www.esnips.com/user/buyphentermineonlinenow
引用 回复
 
2008-05-24 04:13
游客 74.55.158.*
未注册

xanax

It is the coolest site,keep so!
<a href="http://en.netlog.com/getxanax">xanax</a>
[URL=http://en.netlog.com/getxanax]xanax[/URL]
http://en.netlog.com/getxanax
<a href="http://www.esnips.com/user/buyxanaxonlinenow">xanax</a>
[URL=http://www.esnips.com/user/buyxanaxonlinenow]xanax[/URL]
http://www.esnips.com/user/buyxanaxonlinenow
<a href="http://www.dafont.com/profile.php?user=158877">xanax</a>
[URL=http://www.dafont.com/profile.php?user=158877]xanax[/URL]
http://www.dafont.com/profile.php?user=158877
<a href="http://en.netlog.com/BuyXanax">xanax</a>
[URL=http://en.netlog.com/BuyXanax]xanax[/URL]
http://en.netlog.com/BuyXanax
<a href="http://en.netlog.com/BuyCialisToday">cialis</a>
[URL=http://en.netlog.com/BuyCialisToday]cialis[/URL]
http://en.netlog.com/BuyCialisToday
引用 回复
 
2008-05-24 04:13
游客 74.55.158.*
未注册

cialis

Excellent site. It was pleasant to me.
<a href="http://www.profileheaven.com/BuyXanax">xanax</a>
[URL=http://www.profileheaven.com/BuyXanax]xanax[/URL]
http://www.profileheaven.com/BuyXanax
<a href="http://en.netlog.com/BuyCheapCialisNow">cialis</a>
[URL=http://en.netlog.com/BuyCheapCialisNow]cialis[/URL]
http://en.netlog.com/BuyCheapCialisNow
<a href="http://en.netlog.com/getcialis">cialis</a>
[URL=http://en.netlog.com/getcialis]cialis[/URL]
http://en.netlog.com/getcialis
<a href="http://en.netlog.com/BuyCheapXanax">xanax</a>
[URL=http://en.netlog.com/BuyCheapXanax]xanax[/URL]
http://en.netlog.com/BuyCheapXanax
<a href="http://www.gamecareerguide.com/forums/member.php?u=3208">xanax</a>
[URL=http://www.gamecareerguide.com/forums/member.php?u=3208]xanax[/URL]
http://www.gamecareerguide.com/forums/member.php?u=3208
引用 回复
 
1  /  9  页    1  2  3  4  5  6  7  8 »  跳转
发表新主题 回复该主题

现在时间是:2008-09-05 13:54:32