2015-08-24から1日間の記事一覧

CacooのAWSアイコン

Cacoo Storeで購入すると使えるようになる。 購入と言っても、0ポイントなので実際はタダ。 Amazon Web Services Icons - StencilsDetail | Cacoo Storecacoo.com AWSテンプレートの方を入れても、アイコンは使えるようにならなかった。

Cでディレクトリの中身を見る

c

#include <stdlib.h> #include <stdio.h> #include <string.h> #include <dirent.h> #include <unistd.h> #include <sys/stat.h> #include <limits.h> #define INITSIZE 100 typedef struct entry { struct stat stat; char name[NAME_MAX]; } entry_t; typedef struct dir { entry_t **entries; size_t count; size_t max_…</limits.h></sys/stat.h></unistd.h></dirent.h></string.h></stdio.h></stdlib.h>