SandBox: お砂場(練習ページ)です

SEO SPAMボットの攻撃対象になるため、デフォルトでこのページは凍結されています。

見出し

大見出し 1

中見出し 1-1

小見出し 1-1-1

段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 段落1段落1段落1段落1段落1段落強調1段落1段落1段落1段落1段落1 段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1

段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2 段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2

中見出し 1-2

用語1
いろいろ書いた解説文1と強調単語 *1 段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1
用語2
いろいろ書いた解説文2 *2
用語3
いろいろ書いた解説文3 *3

大見出し 2

小見出し 2-1

小見出し 2-2

段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1段落1 段落1段落1段落1段落イタリック1段落1段落1段落1段落1段落1段落1段落1 段落1段落1段落1段落イタリックボールド1段落1段落1段落1段落1段落1

段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2

段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2

段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2段落2

レベル0レベル0レベル0レベル0レベル0レベル0

レベル1

レベル1

レベル1

レベル2

レベル2

レベル2

レベル3

  • はろ1
    • はろ2 ろろろろ2
      • はろ3
    • はろ2
      • はろ3
    • はろ2
      • はろ3

        レベル3

        レベル3

        レベル3

日付

日付 &date;
date?
時刻 &time;
time?
日時 &now;
now?

リンク

URLやメールアドレスは自動的にリンクになります

plugin

textbox note

引数 2 つで書いた box。少し役立つ情報が書かれます。

少し役立つ情報が書かれます。

ノート

タイトル付きのテキストボックスです。少し役立つ情報が書かれます。

textbox caution

要注意です。

注意

タイトル付きの要注意テキストボックスです。

textbox warning

警告です。

警告

タイトル付きの警告テキストボックスです。

textbox thought

考えごとです。

考えごと

タイトルつきの考えごとです。

整形済みテキスト

#include <stdio.h>
int main(int argc, char **argv, char **env)
{	printf("Hello World.\n");
}
#include <stdio.h>
int main(int argc, char **argv, char **env)
{	printf("Hello World.\n");
	return 0;
}
Expand allFold all
  1
  2
  3
  4
  5
 
 
-
|
!
#include <stdio.h>
int main(int argc, char **argv, char **env)
{       printf("Hello World.\n");
        return 0;
}
file/source-direct/download/linux-4.1.27/lib/uuid.c
Expand allFold all
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
 
 
 
 
-
|
|
|
!
 
 
-
|
|
|
!
 
 
 
-
|
|
|
!
 
/*
 * Unified UUID/GUID definition
 *
 * Copyright (C) 2009, Intel Corp.
 *      Huang Ying <ying.huang@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
 
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/uuid.h>
#include <linux/random.h>
 
static void __uuid_gen_common(__u8 b[16])
{
        prandom_bytes(b, 16);
        /* reversion 0b10 */
        b[8] = (b[8] & 0x3F) | 0x80;
}
 
void uuid_le_gen(uuid_le *lu)
{
        __uuid_gen_common(lu->b);
        /* version 4 : random generation */
        lu->b[7] = (lu->b[7] & 0x0F) | 0x40;
}
EXPORT_SYMBOL_GPL(uuid_le_gen);
 
void uuid_be_gen(uuid_be *bu)
{
        __uuid_gen_common(bu->b);
        /* version 4 : random generation */
        bu->b[6] = (bu->b[6] & 0x0F) | 0x40;
}
EXPORT_SYMBOL_GPL(uuid_be_gen);
fileOpenGrok(linux-4.1.27/lib/uuid.c:1)
Expand allFold all
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
 
 
 
 
-
|
|
|
!
 
 
-
|
|
|
!
 
 
 
-
|
|
|
!
 
/*
 * Unified UUID/GUID definition
 *
 * Copyright (C) 2009, Intel Corp.
 *      Huang Ying <ying.huang@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
 
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/uuid.h>
#include <linux/random.h>
 
static void __uuid_gen_common(__u8 b[16])
{
        prandom_bytes(b, 16);
        /* reversion 0b10 */
        b[8] = (b[8] & 0x3F) | 0x80;
}
 
void uuid_le_gen(uuid_le *lu)
{
        __uuid_gen_common(lu->b);
        /* version 4 : random generation */
        lu->b[7] = (lu->b[7] & 0x0F) | 0x40;
}
EXPORT_SYMBOL_GPL(uuid_le_gen);
 
void uuid_be_gen(uuid_be *bu)
{
        __uuid_gen_common(bu->b);
        /* version 4 : random generation */
        bu->b[6] = (bu->b[6] & 0x0F) | 0x40;
}
EXPORT_SYMBOL_GPL(uuid_be_gen);
fileOpenGrok(linux-4.1.27/lib/uuid.c:26)
Expand allFold all
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 
-
|
|
|
!
 
 
-
|
|
static void __uuid_gen_common(__u8 b[16])
{
        prandom_bytes(b, 16);
        /* reversion 0b10 */
        b[8] = (b[8] & 0x3F) | 0x80;
}
 
void uuid_le_gen(uuid_le *lu)
{
        __uuid_gen_common(lu->b);
        /* version 4 : random generation */
fileOpenGrok(linux-4.1.27/lib/uuid.c:26)
Expand allFold all
 26
 27
 28
 29
 30
 31
 
-
|
|
|
!
static void __uuid_gen_common(__u8 b[16])
{
        prandom_bytes(b, 16);
        /* reversion 0b10 */
        b[8] = (b[8] & 0x3F) | 0x80;
}
fileOpenGrok(linux-4.1.27/lib/uuid.c:33)
Expand allFold all
 33
 34
 35
 36
 37
 38
 
-
|
|
|
!
void uuid_le_gen(uuid_le *lu)
{
        __uuid_gen_common(lu->b);
        /* version 4 : random generation */
        lu->b[7] = (lu->b[7] & 0x0F) | 0x40;
}
fileOpenGrok(linux-4.1.27/lib/uuid.c:1)
Expand allFold all
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
 
 
 
/*
 * Unified UUID/GUID definition
 *
 * Copyright (C) 2009, Intel Corp.
 *      Huang Ying <ying.huang@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
 
#include <linux/kernel.h>
#include <linux/export.h>

Item1 NameItem2 ValueItem2 String
Tokyo1Cloudy
Osaka2Fine

その他の文字装飾

整形済みテキスト整形済みテキスト整形済みテキスト
整形済みテキスト整形済みテキスト整形済みテキスト

色の変更も可能なルール(COLOR(#993333))

サイズの変更も可能なルール(SIZE(10))

両方指定(SIZE(20)COLOR(#333399))

打ち消し線

このページ独自で拡張したもの

装飾

キーボードKeyFace[Ctrl]+[Alt]+[Del]
GUI ControlGuiFacexterm
コンソール入力ConsoleIngcc -Wall -O -o main main.c
コンソール出力ConsoleOutHello world.
コンソール出力注視ConsoleOut,FocusSelected Item
コード断片Codeif (likely(condition))
エリアスAliasmajor_number
コンソール入力 + エリアスConsoleIn,Aliasdown_loaded_directory
コンソール出力 + エリアスConsoleOut,Alias12:24:56

リンク

左寄せ

中寄せ
右寄せ

*1 注釈1: WikiName
*2 注釈2: SandBoxへのリンク
*3 注釈3: 注釈の中にも*4作ることができます
*4 注釈の注釈を

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS