Skip to content

Commit

Permalink
😃 🔫 it's 4:07 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
poiley committed Jan 31, 2018
1 parent 7aa37e1 commit b1db5d7
Show file tree
Hide file tree
Showing 39 changed files with 264 additions and 75 deletions.
Binary file modified Lab2/.vs/Lab2/v14/.suo
Binary file not shown.
Binary file modified Lab2/Debug/Lab2.exe
Binary file not shown.
Binary file modified Lab2/Debug/Lab2.ilk
Binary file not shown.
Binary file modified Lab2/Debug/Lab2.pdb
Binary file not shown.
Binary file modified Lab2/Lab2.VC.db
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Functions.obj
Binary file not shown.
17 changes: 2 additions & 15 deletions Lab2/Lab2/Debug/Lab2.log
@@ -1,15 +1,2 @@
 Main.c
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\main.c(8): warning C4101: 'pHead': unreferenced local variable
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\main.c(10): warning C4101: 'pList': unreferenced local variable
Functions.c
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\functions.c(55): warning C4477: 'scanf' : format string '%s' requires an argument of type 'char *', but variadic argument 1 has type 'char **'
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\functions.c(55): warning C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\stdio.h(1270): note: see declaration of 'scanf'
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\functions.c(58): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\string.h(119): note: see declaration of 'strcpy'
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\functions.c(67): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\string.h(119): note: see declaration of 'strcpy'
Generating Code...
c:\users\benjamin poile\documents\visual studio 2015\projects\lab2\lab2\functions.c(84): warning C4716: 'storeContacts': must return a value
Lab2.vcxproj -> C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\Debug\Lab2.exe
Lab2.vcxproj -> C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\Debug\Lab2.pdb (Full PDB)
 Lab2.vcxproj -> C:\Users\poile\documents\visual studio 2015\Projects\Lab2\Debug\Lab2.exe
Lab2.vcxproj -> C:\Users\poile\documents\visual studio 2015\Projects\Lab2\Debug\Lab2.pdb (Full PDB)
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/CL.write.1.tlog
Binary file not shown.
2 changes: 1 addition & 1 deletion Lab2/Lab2/Debug/Lab2.tlog/Lab2.lastbuildstate
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Debug|Win32|C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\|
Debug|Win32|C:\Users\poile\documents\visual studio 2015\Projects\Lab2\|
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Lab2.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/Main.obj
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/vc140.idb
Binary file not shown.
Binary file modified Lab2/Lab2/Debug/vc140.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions Lab2/Lab2/Functions.c
Expand Up @@ -17,7 +17,7 @@ Boolean insertContactInOrder(Node **pList, Contact newData) {
Node *pMem = makeNode(newData);

if (pMem == NULL)
return (Boolean)FALSE;
return FALSE;

pMem->pNext = *pList;
*pList = pMem;
Expand Down Expand Up @@ -71,7 +71,7 @@ Boolean editContact(Node *pList, Contact searchContact) {
return FALSE;
}

Boolean loadContacts(FILE *infile, Node **pList) {
Boolean loadContacts(FILE *infile, Node **pList) { //not finished
int i = 0, num_contacts = 0;

if (i == num_contacts)
Expand Down
Binary file modified PA2/.vs/PA2/v14/.suo
Binary file not shown.
Binary file modified PA2/Debug/PA2.exe
Binary file not shown.
Binary file modified PA2/Debug/PA2.ilk
Binary file not shown.
Binary file modified PA2/Debug/PA2.pdb
Binary file not shown.
Binary file modified PA2/PA2.VC.db
Binary file not shown.
20 changes: 20 additions & 0 deletions PA2/PA2.sln
Expand Up @@ -5,6 +5,10 @@ VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PA2", "PA2\PA2.vcxproj", "{0C6309C4-E2EF-4407-8112-2679AF82A569}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PA1", "..\PA1\PA1\PA1.vcxproj", "{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Lab2", "..\Lab2\Lab2\Lab2.vcxproj", "{3C097689-FDE9-447F-A7D9-E74FCDE68B17}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Expand All @@ -21,6 +25,22 @@ Global
{0C6309C4-E2EF-4407-8112-2679AF82A569}.Release|x64.Build.0 = Release|x64
{0C6309C4-E2EF-4407-8112-2679AF82A569}.Release|x86.ActiveCfg = Release|Win32
{0C6309C4-E2EF-4407-8112-2679AF82A569}.Release|x86.Build.0 = Release|Win32
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Debug|x64.ActiveCfg = Debug|x64
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Debug|x64.Build.0 = Debug|x64
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Debug|x86.ActiveCfg = Debug|Win32
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Debug|x86.Build.0 = Debug|Win32
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Release|x64.ActiveCfg = Release|x64
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Release|x64.Build.0 = Release|x64
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Release|x86.ActiveCfg = Release|Win32
{AE8A827D-9AC6-4348-BDCD-DE38D397EAF8}.Release|x86.Build.0 = Release|Win32
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Debug|x64.ActiveCfg = Debug|x64
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Debug|x64.Build.0 = Debug|x64
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Debug|x86.ActiveCfg = Debug|Win32
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Debug|x86.Build.0 = Debug|Win32
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Release|x64.ActiveCfg = Release|x64
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Release|x64.Build.0 = Release|x64
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Release|x86.ActiveCfg = Release|Win32
{3C097689-FDE9-447F-A7D9-E74FCDE68B17}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Binary file modified PA2/PA2/Debug/Functions.obj
Binary file not shown.
Binary file modified PA2/PA2/Debug/Main.obj
Binary file not shown.
4 changes: 2 additions & 2 deletions PA2/PA2/Debug/PA2.log
@@ -1,2 +1,2 @@
 PA2.vcxproj -> C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\Debug\PA2.exe
PA2.vcxproj -> C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\Debug\PA2.pdb (Full PDB)
 PA2.vcxproj -> C:\Users\poile\documents\visual studio 2015\Projects\PA2\Debug\PA2.exe
PA2.vcxproj -> C:\Users\poile\documents\visual studio 2015\Projects\PA2\Debug\PA2.pdb (Full PDB)
Binary file modified PA2/PA2/Debug/PA2.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified PA2/PA2/Debug/PA2.tlog/CL.write.1.tlog
Binary file not shown.
2 changes: 1 addition & 1 deletion PA2/PA2/Debug/PA2.tlog/PA2.lastbuildstate
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Debug|Win32|C:\Users\Benjamin Poile\Documents\Visual Studio 2015\Projects\Lab2\|
Debug|Win32|C:\Users\poile\documents\visual studio 2015\Projects\PA2\|
Binary file modified PA2/PA2/Debug/PA2.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified PA2/PA2/Debug/PA2.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified PA2/PA2/Debug/PA2.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified PA2/PA2/Debug/vc140.idb
Binary file not shown.
Binary file modified PA2/PA2/Debug/vc140.pdb
Binary file not shown.

0 comments on commit b1db5d7

Please sign in to comment.