Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f0737a0

Browse files
mixmexmixmex
mixmex
authored and
mixmex
committed
01. Linked Lists
1 parent 140f78a commit f0737a0

File tree

6 files changed

+379
-0
lines changed

6 files changed

+379
-0
lines changed
Lines changed: 244 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,244 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
3989641D1E744B9400F9F69B /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 3989641C1E744B9400F9F69B /* main.c */; };
11+
/* End PBXBuildFile section */
12+
13+
/* Begin PBXCopyFilesBuildPhase section */
14+
398964171E744B9400F9F69B /* CopyFiles */ = {
15+
isa = PBXCopyFilesBuildPhase;
16+
buildActionMask = 2147483647;
17+
dstPath = /usr/share/man/man1/;
18+
dstSubfolderSpec = 0;
19+
files = (
20+
);
21+
runOnlyForDeploymentPostprocessing = 1;
22+
};
23+
/* End PBXCopyFilesBuildPhase section */
24+
25+
/* Begin PBXFileReference section */
26+
398964191E744B9400F9F69B /* 01.LinkedLists */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = 01.LinkedLists; sourceTree = BUILT_PRODUCTS_DIR; };
27+
3989641C1E744B9400F9F69B /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
28+
/* End PBXFileReference section */
29+
30+
/* Begin PBXFrameworksBuildPhase section */
31+
398964161E744B9400F9F69B /* Frameworks */ = {
32+
isa = PBXFrameworksBuildPhase;
33+
buildActionMask = 2147483647;
34+
files = (
35+
);
36+
runOnlyForDeploymentPostprocessing = 0;
37+
};
38+
/* End PBXFrameworksBuildPhase section */
39+
40+
/* Begin PBXGroup section */
41+
398964101E744B9400F9F69B = {
42+
isa = PBXGroup;
43+
children = (
44+
3989641B1E744B9400F9F69B /* 01.LinkedLists */,
45+
3989641A1E744B9400F9F69B /* Products */,
46+
);
47+
sourceTree = "<group>";
48+
};
49+
3989641A1E744B9400F9F69B /* Products */ = {
50+
isa = PBXGroup;
51+
children = (
52+
398964191E744B9400F9F69B /* 01.LinkedLists */,
53+
);
54+
name = Products;
55+
sourceTree = "<group>";
56+
};
57+
3989641B1E744B9400F9F69B /* 01.LinkedLists */ = {
58+
isa = PBXGroup;
59+
children = (
60+
3989641C1E744B9400F9F69B /* main.c */,
61+
);
62+
path = 01.LinkedLists;
63+
sourceTree = "<group>";
64+
};
65+
/* End PBXGroup section */
66+
67+
/* Begin PBXNativeTarget section */
68+
398964181E744B9400F9F69B /* 01.LinkedLists */ = {
69+
isa = PBXNativeTarget;
70+
buildConfigurationList = 398964201E744B9400F9F69B /* Build configuration list for PBXNativeTarget "01.LinkedLists" */;
71+
buildPhases = (
72+
398964151E744B9400F9F69B /* Sources */,
73+
398964161E744B9400F9F69B /* Frameworks */,
74+
398964171E744B9400F9F69B /* CopyFiles */,
75+
);
76+
buildRules = (
77+
);
78+
dependencies = (
79+
);
80+
name = 01.LinkedLists;
81+
productName = 01.LinkedLists;
82+
productReference = 398964191E744B9400F9F69B /* 01.LinkedLists */;
83+
productType = "com.apple.product-type.tool";
84+
};
85+
/* End PBXNativeTarget section */
86+
87+
/* Begin PBXProject section */
88+
398964111E744B9400F9F69B /* Project object */ = {
89+
isa = PBXProject;
90+
attributes = {
91+
LastUpgradeCheck = 0720;
92+
ORGANIZATIONNAME = mixmex;
93+
TargetAttributes = {
94+
398964181E744B9400F9F69B = {
95+
CreatedOnToolsVersion = 7.2.1;
96+
};
97+
};
98+
};
99+
buildConfigurationList = 398964141E744B9400F9F69B /* Build configuration list for PBXProject "01.LinkedLists" */;
100+
compatibilityVersion = "Xcode 3.2";
101+
developmentRegion = English;
102+
hasScannedForEncodings = 0;
103+
knownRegions = (
104+
en,
105+
);
106+
mainGroup = 398964101E744B9400F9F69B;
107+
productRefGroup = 3989641A1E744B9400F9F69B /* Products */;
108+
projectDirPath = "";
109+
projectRoot = "";
110+
targets = (
111+
398964181E744B9400F9F69B /* 01.LinkedLists */,
112+
);
113+
};
114+
/* End PBXProject section */
115+
116+
/* Begin PBXSourcesBuildPhase section */
117+
398964151E744B9400F9F69B /* Sources */ = {
118+
isa = PBXSourcesBuildPhase;
119+
buildActionMask = 2147483647;
120+
files = (
121+
3989641D1E744B9400F9F69B /* main.c in Sources */,
122+
);
123+
runOnlyForDeploymentPostprocessing = 0;
124+
};
125+
/* End PBXSourcesBuildPhase section */
126+
127+
/* Begin XCBuildConfiguration section */
128+
3989641E1E744B9400F9F69B /* Debug */ = {
129+
isa = XCBuildConfiguration;
130+
buildSettings = {
131+
ALWAYS_SEARCH_USER_PATHS = NO;
132+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
133+
CLANG_CXX_LIBRARY = "libc++";
134+
CLANG_ENABLE_MODULES = YES;
135+
CLANG_ENABLE_OBJC_ARC = YES;
136+
CLANG_WARN_BOOL_CONVERSION = YES;
137+
CLANG_WARN_CONSTANT_CONVERSION = YES;
138+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
139+
CLANG_WARN_EMPTY_BODY = YES;
140+
CLANG_WARN_ENUM_CONVERSION = YES;
141+
CLANG_WARN_INT_CONVERSION = YES;
142+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
143+
CLANG_WARN_UNREACHABLE_CODE = YES;
144+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
145+
CODE_SIGN_IDENTITY = "-";
146+
COPY_PHASE_STRIP = NO;
147+
DEBUG_INFORMATION_FORMAT = dwarf;
148+
ENABLE_STRICT_OBJC_MSGSEND = YES;
149+
ENABLE_TESTABILITY = YES;
150+
GCC_C_LANGUAGE_STANDARD = gnu99;
151+
GCC_DYNAMIC_NO_PIC = NO;
152+
GCC_NO_COMMON_BLOCKS = YES;
153+
GCC_OPTIMIZATION_LEVEL = 0;
154+
GCC_PREPROCESSOR_DEFINITIONS = (
155+
"DEBUG=1",
156+
"$(inherited)",
157+
);
158+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
159+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
160+
GCC_WARN_UNDECLARED_SELECTOR = YES;
161+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
162+
GCC_WARN_UNUSED_FUNCTION = YES;
163+
GCC_WARN_UNUSED_VARIABLE = YES;
164+
MACOSX_DEPLOYMENT_TARGET = 10.10;
165+
MTL_ENABLE_DEBUG_INFO = YES;
166+
ONLY_ACTIVE_ARCH = YES;
167+
SDKROOT = macosx;
168+
};
169+
name = Debug;
170+
};
171+
3989641F1E744B9400F9F69B /* Release */ = {
172+
isa = XCBuildConfiguration;
173+
buildSettings = {
174+
ALWAYS_SEARCH_USER_PATHS = NO;
175+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
176+
CLANG_CXX_LIBRARY = "libc++";
177+
CLANG_ENABLE_MODULES = YES;
178+
CLANG_ENABLE_OBJC_ARC = YES;
179+
CLANG_WARN_BOOL_CONVERSION = YES;
180+
CLANG_WARN_CONSTANT_CONVERSION = YES;
181+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
182+
CLANG_WARN_EMPTY_BODY = YES;
183+
CLANG_WARN_ENUM_CONVERSION = YES;
184+
CLANG_WARN_INT_CONVERSION = YES;
185+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
186+
CLANG_WARN_UNREACHABLE_CODE = YES;
187+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
188+
CODE_SIGN_IDENTITY = "-";
189+
COPY_PHASE_STRIP = NO;
190+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
191+
ENABLE_NS_ASSERTIONS = NO;
192+
ENABLE_STRICT_OBJC_MSGSEND = YES;
193+
GCC_C_LANGUAGE_STANDARD = gnu99;
194+
GCC_NO_COMMON_BLOCKS = YES;
195+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
196+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
197+
GCC_WARN_UNDECLARED_SELECTOR = YES;
198+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
199+
GCC_WARN_UNUSED_FUNCTION = YES;
200+
GCC_WARN_UNUSED_VARIABLE = YES;
201+
MACOSX_DEPLOYMENT_TARGET = 10.10;
202+
MTL_ENABLE_DEBUG_INFO = NO;
203+
SDKROOT = macosx;
204+
};
205+
name = Release;
206+
};
207+
398964211E744B9400F9F69B /* Debug */ = {
208+
isa = XCBuildConfiguration;
209+
buildSettings = {
210+
PRODUCT_NAME = "$(TARGET_NAME)";
211+
};
212+
name = Debug;
213+
};
214+
398964221E744B9400F9F69B /* Release */ = {
215+
isa = XCBuildConfiguration;
216+
buildSettings = {
217+
PRODUCT_NAME = "$(TARGET_NAME)";
218+
};
219+
name = Release;
220+
};
221+
/* End XCBuildConfiguration section */
222+
223+
/* Begin XCConfigurationList section */
224+
398964141E744B9400F9F69B /* Build configuration list for PBXProject "01.LinkedLists" */ = {
225+
isa = XCConfigurationList;
226+
buildConfigurations = (
227+
3989641E1E744B9400F9F69B /* Debug */,
228+
3989641F1E744B9400F9F69B /* Release */,
229+
);
230+
defaultConfigurationIsVisible = 0;
231+
defaultConfigurationName = Release;
232+
};
233+
398964201E744B9400F9F69B /* Build configuration list for PBXNativeTarget "01.LinkedLists" */ = {
234+
isa = XCConfigurationList;
235+
buildConfigurations = (
236+
398964211E744B9400F9F69B /* Debug */,
237+
398964221E744B9400F9F69B /* Release */,
238+
);
239+
defaultConfigurationIsVisible = 0;
240+
};
241+
/* End XCConfigurationList section */
242+
};
243+
rootObject = 398964111E744B9400F9F69B /* Project object */;
244+
}

‎01.LinkedLists/01.LinkedLists.xcodeproj/project.xcworkspace/contents.xcworkspacedata‎

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0720"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "398964181E744B9400F9F69B"
18+
BuildableName = "01.LinkedLists"
19+
BlueprintName = "01.LinkedLists"
20+
ReferencedContainer = "container:01.LinkedLists.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "398964181E744B9400F9F69B"
36+
BuildableName = "01.LinkedLists"
37+
BlueprintName = "01.LinkedLists"
38+
ReferencedContainer = "container:01.LinkedLists.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
<AdditionalOptions>
42+
</AdditionalOptions>
43+
</TestAction>
44+
<LaunchAction
45+
buildConfiguration = "Debug"
46+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
launchStyle = "0"
49+
useCustomWorkingDirectory = "NO"
50+
ignoresPersistentStateOnLaunch = "NO"
51+
debugDocumentVersioning = "YES"
52+
debugServiceExtension = "internal"
53+
allowLocationSimulation = "YES">
54+
<BuildableProductRunnable
55+
runnableDebuggingMode = "0">
56+
<BuildableReference
57+
BuildableIdentifier = "primary"
58+
BlueprintIdentifier = "398964181E744B9400F9F69B"
59+
BuildableName = "01.LinkedLists"
60+
BlueprintName = "01.LinkedLists"
61+
ReferencedContainer = "container:01.LinkedLists.xcodeproj">
62+
</BuildableReference>
63+
</BuildableProductRunnable>
64+
<AdditionalOptions>
65+
</AdditionalOptions>
66+
</LaunchAction>
67+
<ProfileAction
68+
buildConfiguration = "Release"
69+
shouldUseLaunchSchemeArgsEnv = "YES"
70+
savedToolIdentifier = ""
71+
useCustomWorkingDirectory = "NO"
72+
debugDocumentVersioning = "YES">
73+
<BuildableProductRunnable
74+
runnableDebuggingMode = "0">
75+
<BuildableReference
76+
BuildableIdentifier = "primary"
77+
BlueprintIdentifier = "398964181E744B9400F9F69B"
78+
BuildableName = "01.LinkedLists"
79+
BlueprintName = "01.LinkedLists"
80+
ReferencedContainer = "container:01.LinkedLists.xcodeproj">
81+
</BuildableReference>
82+
</BuildableProductRunnable>
83+
</ProfileAction>
84+
<AnalyzeAction
85+
buildConfiguration = "Debug">
86+
</AnalyzeAction>
87+
<ArchiveAction
88+
buildConfiguration = "Release"
89+
revealArchiveInOrganizer = "YES">
90+
</ArchiveAction>
91+
</Scheme>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>01.LinkedLists.xcscheme</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
<key>SuppressBuildableAutocreation</key>
14+
<dict>
15+
<key>398964181E744B9400F9F69B</key>
16+
<dict>
17+
<key>primary</key>
18+
<true/>
19+
</dict>
20+
</dict>
21+
</dict>
22+
</plist>

‎01.LinkedLists/01.LinkedLists/main.c‎

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// main.c
3+
// 01.LinkedLists
4+
//
5+
// Created by mixmex on 3/11/17.
6+
// Copyright © 2017 mixmex. All rights reserved.
7+
//
8+
9+
#include <stdio.h>
10+
11+
int main(int argc, const char * argv[]) {
12+
// insert code here...
13+
printf("Hello, World!\n");
14+
return 0;
15+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /